This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.yaml
201 lines (162 loc) · 3.61 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# application: win10css
# version: 1
runtime: php55
api_version: 1
threadsafe: yes
handlers:
- url: /
static_files: index.html
upload: index\.html
- url: /index\.html
static_files: index.html
upload: index\.html
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest
static_files: \1
upload: (.*\.(appcache|manifest))
expiration: "0m"
- url: /(.*\.atom)
mime_type: application/atom+xml
static_files: \1
upload: (.*\.atom)
expiration: "1h"
- url: /(.*\.crx)
mime_type: application/x-chrome-extension
static_files: \1
upload: (.*\.crx)
- url: /(.*\.css)
mime_type: text/css
static_files: \1
upload: (.*\.css)
- url: /(.*\.md)
mime_type: text/markdown
static_files: \1
upload: (.*\.md)
- url: /(.*\.eot)
mime_type: application/vnd.ms-fontobject
static_files: \1
upload: (.*\.eot)
- url: /(.*\.htc)
mime_type: text/x-component
static_files: \1
upload: (.*\.htc)
- url: /(.*\.html)
mime_type: text/html
static_files: \1
upload: (.*\.html)
expiration: "1h"
- url: /(.*\.ico)
mime_type: image/x-icon
static_files: \1
upload: (.*\.ico)
expiration: "7d"
- url: /(.*\.js)
mime_type: text/javascript
static_files: \1
upload: (.*\.js)
- url: /(.*\.min.js)
mime_type: text/javascript
static_files: \1
upload: (.*\.min.js)
- url: /(.*\.json)
mime_type: application/json
static_files: \1
upload: (.*\.json)
expiration: "1h"
- url: /(.*\.m4v)
mime_type: video/m4v
static_files: \1
upload: (.*\.m4v)
- url: /(.*\.mp4)
mime_type: video/mp4
static_files: \1
upload: (.*\.mp4)
- url: /(.*\.(ogg|oga))
mime_type: audio/ogg
static_files: \1
upload: (.*\.(ogg|oga))
- url: /(.*\.ogv)
mime_type: video/ogg
static_files: \1
upload: (.*\.ogv)
- url: /(.*\.otf)
mime_type: font/opentype
static_files: \1
upload: (.*\.otf)
- url: /(.*\.pdf)
mime_type: application/pdf
static_files: \1
upload: (.*\.pdf)
- url: /(.*\.rss)
mime_type: application/rss+xml
static_files: \1
upload: (.*\.rss)
expiration: "1h"
- url: /(.*\.safariextz)
mime_type: application/octet-stream
static_files: \1
upload: (.*\.safariextz)
- url: /(.*\.sh)
mime_type: text/x-shellscript
static_files: \1
upload: (.*\.sh)
- url: /(.*\.(svg|svgz))
mime_type: images/svg+xml
static_files: \1
upload: (.*\.(svg|svgz))
- url: /(.*\.swf)
mime_type: application/x-shockwave-flash
static_files: \1
upload: (.*\.swf)
- url: /(.*\.ttf)
mime_type: font/truetype
static_files: \1
upload: (.*\.ttf)
- url: /(.*\.txt)
mime_type: text/plain
static_files: \1
upload: (.*\.txt)
- url: /(.*\.unity3d)
mime_type: application/vnd.unity
static_files: \1
upload: (.*\.unity3d)
- url: /(.*\.webm)
mime_type: video/webm
static_files: \1
upload: (.*\.webm)
- url: /(.*\.webp)
mime_type: image/webp
static_files: \1
upload: (.*\.webp)
- url: /(.*\.woff)
mime_type: application/x-font-woff
static_files: \1
upload: (.*\.woff)
- url: /(.*\.xml)
mime_type: application/xml
static_files: \1
upload: (.*\.xml)
expiration: "1h"
- url: /(.*\.xpi)
mime_type: application/x-xpinstall
static_files: \1
upload: (.*\.xpi)
# image files
- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png))
static_files: \1
upload: (.*\.(bmp|gif|ico|jpeg|jpg|png))
# audio files
- url: /(.*\.(mid|midi|mp3|wav))
static_files: \1
upload: (.*\.(mid|midi|mp3|wav))
# windows files
- url: /(.*\.(doc|exe|ppt|rtf|xls))
static_files: \1
upload: (.*\.(doc|exe|ppt|rtf|xls))
# compressed files
- url: /(.*\.(bz2|gz|rar|tar|tgz|zip))
static_files: \1
upload: (.*\.(bz2|gz|rar|tar|tgz|zip))