forked from google/WebFundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
109 lines (92 loc) · 2.32 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
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
runtime: python27
api_version: 1
threadsafe: true
# application: petele-scratch
# version: wf-devsite
handlers:
- url: /test-results.json
static_files: test-results.json
upload: test-results.json
http_headers:
x-frame-options: SAMEORIGIN
- url: /robots.txt
static_files: gae/robots.txt
upload: gae/robots.txt
http_headers:
x-frame-options: SAMEORIGIN
- url: /wf-local/scripts/
static_dir: gae/scripts/
http_headers:
x-frame-options: SAMEORIGIN
- url: /wf-local/styles/
static_dir: gae/styles/
http_headers:
x-frame-options: SAMEORIGIN
- url: /wf-local/images/
static_dir: gae/images/
http_headers:
x-frame-options: SAMEORIGIN
- url: /web/(.*\.(png|gif|jpg|svg|xml|mp4|webm|pdf|mp3|mov))
static_files: src/content/en/\1
expiration: 1d
upload: src/content/en/(.*\.(png|gif|jpg|svg|xml|mp4|webm|pdf|mp3|mov))
http_headers:
x-frame-options: SAMEORIGIN
- url: /(.*\.ico)
static_files: src/content/en/images/\1
expiration: 7d
upload: src/content/en/images/(.*\.ico)
http_headers:
x-frame-options: SAMEORIGIN
- url: /web/manifest.json
static_files: src/content/en/manifest.json
expiration: 1d
upload: src/content/en/manifest.json
http_headers:
x-frame-options: SAMEORIGIN
- url: /web/(.*\.(js|css|json))
static_files: src/content/en/\1
expiration: 1d
upload: src/content/en/(.*\.(js|css))
http_headers:
x-frame-options: SAMEORIGIN
Access-Control-Allow-Origin: https://developers.google.com
application_readable: true
- url: /web/(.*\.(woff|eot|ttf))
static_files: \1
expiration: 1d
upload: (.*\.(woff|eot|ttf))
http_headers:
Access-Control-Allow-Origin: https://developers.google.com
x-frame-options: SAMEORIGIN
# This is simply a redirect from index to /web
- url: /(.*)
script: appengine_main.app
secure: always
skip_files:
- ^CONTRIBUTING\.md$
- ^gcloud-client-secret\.json.*
- ^gulpfile\.js$
- ^package.*?\.json$
- ^README\.md$
- ^start-appengine\.sh$
- ^TRANSLATION\.md$
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.DS_Store$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?.*\.psd$
- ^(.*/)?.*\.pxm$
- ^(.*/)?.*\.pyc$
- ^(.*/)?.*\.sh$
- ^(.*/)?\..*$
- ^gulp-tasks/.*
- ^node_modules/.*
- ^scratch/.*
- ^src/content/(.*/)?(rss|atom)\.xml$
- ^src/content/en/updates/tags/.*?\.md
- ^src/data/.*
- ^src/templates/.*
- ^src/tests/.*
- ^tools/.*