forked from johnnesky/beepbox
-
Notifications
You must be signed in to change notification settings - Fork 37
/
app.yaml
74 lines (60 loc) · 1.69 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
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "1h"
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
- url: /synth_example\.html
static_files: synth_example.html
upload: synth_example\.html
mime_type: text/html; charset=UTF-8
- url: /beepbox_offline\.html
static_files: beepbox_offline.html
upload: beepbox_offline\.html
mime_type: text/html; charset=UTF-8
http_headers:
Content-Disposition: "attachment; filename=beepbox_offline.html"
- url: /2_3/beepbox_offline\.html
static_files: 2_3/beepbox_offline.html
upload: 2_3/beepbox_offline\.html
mime_type: text/html; charset=UTF-8
http_headers:
Content-Disposition: "attachment; filename=beepbox_offline.html"
- url: /manifest\.webmanifest
static_files: manifest.webmanifest
upload: manifest\.webmanifest
http_headers:
Content-Type: application/manifest+json
- url: /browserconfig\.xml
static_files: browserconfig.xml
upload: browserconfig\.xml
- url: /(.*\.png)
static_files: \1
upload: (.*\.png)
- url: /(.*\.js)
static_files: \1
upload: (.*\.js)
mime_type: application/javascript; charset=utf-8
- url: /(.*\.js.map)
static_files: \1
upload: (.*\.js.map)
mime_type: application/json; charset=utf-8
- url: /
static_files: index.html
upload: index\.html
mime_type: text/html; charset=UTF-8
secure: always
redirect_http_response_code: 301
http_headers:
Link: "<https://www.beepbox.co/>; rel=\"canonical\""
- url: /(.+/)*
static_files: \1index.html
upload: (.+/)*index\.html
mime_type: text/html; charset=UTF-8
secure: always
redirect_http_response_code: 301