-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.yaml
executable file
·179 lines (147 loc) · 3.52 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
application: relieflifemap
version: 1
runtime: python27
api_version: 1
threadsafe: yes
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*/RCS/.*)|
(\..*)|
(assets/.*)|
)$
handlers:
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest
static_files: public/\1
upload: public/(.*\.(appcache|manifest))
expiration: "0m"
- url: /(.*\.atom)
mime_type: application/atom+xml
static_files: public/\1
upload: public/(.*\.atom)
expiration: "1h"
- url: /(.*\.crx)
mime_type: application/x-chrome-extension
static_files: public/\1
upload: public/(.*\.crx)
- url: /(.*\.css)
mime_type: text/css
static_files: public/\1
upload: public/(.*\.css)
- url: /(.*\.eot)
mime_type: application/vnd.ms-fontobject
static_files: public/\1
upload: public/(.*\.eot)
- url: /(.*\.htc)
mime_type: text/x-component
static_files: public/\1
upload: public/(.*\.htc)
- url: /(.*\.html)
mime_type: text/html
static_files: public/\1
upload: public/(.*\.html)
expiration: "1h"
- url: /(.*\.ico)
mime_type: image/x-icon
static_files: public/\1
upload: public/(.*\.ico)
expiration: "7d"
- url: /(.*\.js)
mime_type: text/javascript
static_files: public/\1
upload: public/(.*\.js)
- url: /(.*\.m4v)
mime_type: video/m4v
static_files: public/\1
upload: public/(.*\.m4v)
- url: /(.*\.mp4)
mime_type: video/mp4
static_files: public/\1
upload: public/(.*\.mp4)
- url: /(.*\.(ogg|oga))
mime_type: audio/ogg
static_files: public/\1
upload: public/(.*\.(ogg|oga))
- url: /(.*\.ogv)
mime_type: video/ogg
static_files: public/\1
upload: public/(.*\.ogv)
- url: /(.*\.otf)
mime_type: font/opentype
static_files: public/\1
upload: public/(.*\.otf)
- url: /(.*\.rss)
mime_type: application/rss+xml
static_files: public/\1
upload: public/(.*\.rss)
expiration: "1h"
- url: /(.*\.safariextz)
mime_type: application/octet-stream
static_files: public/\1
upload: public/(.*\.safariextz)
- url: /(.*\.(svg|svgz))
mime_type: images/svg+xml
static_files: public/\1
upload: public/(.*\.(svg|svgz))
- url: /(.*\.swf)
mime_type: application/x-shockwave-flash
static_files: public/\1
upload: public/(.*\.swf)
- url: /(.*\.ttf)
mime_type: font/truetype
static_files: public/\1
upload: public/(.*\.ttf)
- url: /(.*\.txt)
mime_type: text/plain
static_files: public/\1
upload: public/(.*\.txt)
- url: /(.*\.unity3d)
mime_type: application/vnd.unity
static_files: public/\1
upload: public/(.*\.unity3d)
- url: /(.*\.webm)
mime_type: video/webm
static_files: public/\1
upload: public/(.*\.webm)
- url: /(.*\.webp)
mime_type: image/webp
static_files: public/\1
upload: public/(.*\.webp)
- url: /(.*\.woff)
mime_type: application/x-font-woff
static_files: public/\1
upload: public/(.*\.woff)
- url: /(.*\.xpi)
mime_type: application/x-xpinstall
static_files: public/\1
upload: public/(.*\.xpi)
# image files
- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png))
static_files: public/\1
upload: public/(.*\.(bmp|gif|ico|jpeg|jpg|png))
# audio files
- url: /(.*\.(mid|midi|mp3|wav))
static_files: public/\1
upload: public/(.*\.(mid|midi|mp3|wav))
# windows files
- url: /(.*\.(doc|exe|ppt|rtf|xls))
static_files: public/\1
upload: public/(.*\.(doc|exe|ppt|rtf|xls))
# compressed files
- url: /(.*\.(bz2|gz|rar|tar|tgz|zip))
static_files: public/\1
upload: public/(.*\.(bz2|gz|rar|tar|tgz|zip))
- url: .*
script: main.app
libraries:
- name: webapp2
version: "2.5.1"
- name: jinja2
version: latest