-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.yaml
81 lines (67 loc) · 1.59 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
runtime: python27
api_version: 1
threadsafe: yes
default_expiration: "300d 5h"
handlers:
- url: /manifest.webapp
static_files: manifest/manifest.json
upload: manifest/manifest.json
http_headers:
Content-Type: application/x-web-app-manifest+json
- url: /manifest-noads.webapp
static_files: manifest/manifest-noads.json
upload: manifest/manifest-noads.json
http_headers:
Content-Type: application/x-web-app-manifest+json
- url: /static/*
static_dir: static
http_headers:
Vary: Accept-Encoding
- url: /transient/*
static_dir: transient
http_headers:
Vary: Accept-Encoding
expiration: "0d 1h"
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /robots.txt
static_files: transient/robots.txt
upload: transient/robots.txt
- url: /apple-touch-icon.png
static_files: static/img/apple-touch-icon.png
upload: static/img/apple-touch-icon.png
- url: /BingSiteAuth.xml
static_files: static/BingSiteAuth.xml
upload: static/BingSiteAuth.xml
- url: /channel.html
static_files: static/channel.html
upload: static/channel.html
- url: /gameon/static/*
static_dir: gameon/static
http_headers:
Vary: Accept-Encoding
- url: .*
script: main.app
libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: "2.6"
instance_class: F1
automatic_scaling:
max_pending_latency: 15s
# automatic_scaling:
# min_idle_instances: 2
# max_pending_latency: 4.5s
inbound_services:
- warmup
builtins:
- appstats: on
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^node_modules.*$