-
Notifications
You must be signed in to change notification settings - Fork 9
/
io.yaml
89 lines (75 loc) · 1.83 KB
/
io.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
service: io
api_version: 1
threadsafe: true
runtime: python27
default_expiration: '30d'
handlers:
- url: /io/assets
static_dir: build/assets
secure: always
expiration: '1d'
- url: /io/sw.js
static_files: build/sw.js
upload: build/sw.js
expiration: '1s'
secure: always
http_headers:
Cache-Control: private, no-cache
- url: /io/manifest.json
static_files: build/manifest.json
upload: build/manifest.json
secure: always
expiration: '1h'
- url: /io/robots.txt
static_files: robots.txt
upload: robots.txt
secure: always
expiration: '1h'
- url: /io/(.*\.css)
mime_type: text/css
static_files: build/\1
upload: build/(.*\.css)
secure: always
expiration: '365d'
- url: /io/(.*\.js)
mime_type: text/javascript
static_files: build/\1
upload: build/(.*\.js)
secure: always
expiration: '365d'
- url: /io/(.*\.map)
static_files: build/\1
upload: build/(.*\.map)
secure: always
- url: /io/speakers/?
static_files: build/speakers/index.html
upload: build/speakers/index.html
secure: always
expiration: '1s'
- url: /io/faq/communityguidelines/?
static_files: build/faq/communityguidelines/index.html
upload: build/faq/communityguidelines/index.html
secure: always
expiration: '1s'
- url: /io/faq/?
static_files: build/faq/index.html
upload: build/faq/index.html
secure: always
expiration: '1s'
- url: /io/.*
static_files: build/index.html
upload: build/index.html
secure: always
expiration: '1s'
http_headers:
Cache-Control: public, max-age=3600, no-cache
Access-Control-Allow-Origin: '*'
Access-Control-Max-Age: '600'
- url: /io.*
script: main.app
secure: always
skip_files:
- bower_components
- node_modules
- src
- .idea