forked from google/syzkaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
36 lines (32 loc) · 961 Bytes
/
app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2017 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
runtime: go111
# With the default f1 setting, the app episodically crashes with:
# Exceeded soft memory limit of 256 MB with 264 MB after servicing 25 requests total.
# See https://cloud.google.com/appengine/docs/standard/go/config/appref#instance_class
instance_class: f2
inbound_services:
- mail
- mail_bounce
handlers:
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
secure: always
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
secure: always
- url: /static
static_dir: static
secure: always
- url: /(admin|email_poll|cache_update|kcidb_poll)
script: auto
login: admin
secure: always
- url: /_ah/(mail/.+|bounce)
script: auto
login: admin
- url: /(|api|bug|text|x/.+|.*)
script: auto
secure: always