forked from html5rocks/studio.html5rocks.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
50 lines (39 loc) · 991 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
application: html5playbook
version: 7
runtime: python
api_version: 1
handlers:
# Server appropriate mimetype for certain static content.
- url: /samples/(.*\.manifest)
static_files: samples/\1
mime_type: text/cache-manifest
upload: samples/(.*\.manifest)
- url: /samples/(.*\.crx)
static_files: samples/\1
mime_type: application/x-chrome-extension
upload: samples/(.*\.crx)
- url: /samples/(.*\.mp4)
static_files: samples/\1
mime_type: video/mp4
upload: samples/(.*\.mp4)
- url: /samples/(.*\.webm)
static_files: samples/\1
mime_type: video/webm
upload: samples/(.*\.webm)
- url: /samples/(.*\.ogv)
static_files: samples/\1
mime_type: video/ogg
upload: samples/(.*\.ogv)
- url: /samples/(.*\.(ogg|oga))
static_files: samples/\1
mime_type: audio/ogg
upload: samples/(.*\.(ogg|oga))
- url: /img
static_dir: img
- url: /samples
static_dir: samples
- url: /static
static_dir: static
- url: /
static_files: studio.html
upload: studio.html