-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextkl18.yaml
119 lines (100 loc) · 2.46 KB
/
nextkl18.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
service: nextkl18
api_version: 1
threadsafe: true
runtime: python27
default_expiration: "30d"
handlers:
- url: /nextkl18/assets
static_dir: build/assets
secure: always
expiration: "1d"
- url: /nextkl18/sw.js
static_files: build/sw.js
upload: build/sw.js
expiration: "1s"
secure: always
http_headers:
Cache-Control: private, no-cache
- url: /nextkl18/manifest.json
static_files: build/manifest.json
upload: build/manifest.json
secure: always
expiration: "1h"
- url: /nextkl18/sitemap.xml
static_files: sitemap.xml
upload: sitemap.xml
secure: always
expiration: "1h"
- url: /nextkl18/robots.txt
static_files: robots.txt
upload: robots.txt
secure: always
expiration: "1h"
- url: /nextkl18/(.*\.css)
mime_type: text/css
static_files: build/\1
upload: build/(.*\.css)
secure: always
expiration: "365d"
- url: /nextkl18/(.*\.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: /nextkl18/attending/?
static_files: build/attending/index.html
upload: build/attending/index.html
secure: always
expiration: "1s"
- url: /nextkl18/schedule/?
static_files: build/schedule/index.html
upload: build/schedule/index.html
secure: always
expiration: "1s"
- url: /nextkl18/speakers/?
static_files: build/speakers/index.html
upload: build/speakers/index.html
secure: always
expiration: "1s"
- url: /nextkl18/registration/?
static_files: build/registration/index.html
upload: build/registration/index.html
secure: always
expiration: "1s"
- url: /nextkl18/communityguidelines/?
static_files: build/communityguidelines/index.html
upload: build/communityguidelines/index.html
secure: always
expiration: "1s"
- url: /nextkl18/faq/?
static_files: build/faq/index.html
upload: build/faq/index.html
secure: always
expiration: "1s"
- url: /nextkl18/faq/food-menu/?
static_files: build/faq/food-menu/index.html
upload: build/faq/food-menu/index.html
secure: always
expiration: "1s"
- url: /nextkl18/.*
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: /nextkl18.*
script: main.app
secure: always
skip_files:
- bower_components
- node_modules
- src
- .idea