-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.yaml
More file actions
62 lines (54 loc) · 1.78 KB
/
app.yaml
File metadata and controls
62 lines (54 loc) · 1.78 KB
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
service: app
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /
static_files: dist/index.html
upload: dist/index.html
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /bower_components/(.+)
static_files: dist/bower_components/\1
upload: dist/bower_components/(.+)
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /scripts/(.+)
static_files: dist/scripts/\1
upload: dist/scripts/(.+)
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /styles/(.+)
static_files: dist/styles/\1
upload: dist/styles/(.+)
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /fonts/(.+)
static_files: dist/fonts/\1
upload: dist/fonts/(.+)
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /images/(.+)
static_files: dist/images/\1
upload: dist/images/(.+)
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /elements/(.+)
static_files: dist/elements/\1
upload: dist/elements/(.+)
secure: always
http_headers:
strict-transport-security: max-age=15552000
- url: /.*
static_files: dist/index.html
upload: dist/index.html
secure: always
http_headers:
strict-transport-security: max-age=15552000
link: '</bower_components/webcomponentsjs/webcomponents-lite.min.js>; rel=preload; as=script, </elements/elements.html>; rel=preload; </styles/coduno.css>; rel=preload; as=style, </styles/main.css>; rel=preload; as=style, </scripts/util.js>; rel=preload; as=script, </images/logo.svg>; rel=preload; as=image, </fonts/fonts.css>; rel=preload; as=style'