-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
55 lines (46 loc) · 845 Bytes
/
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
application: hyperpronto
version: 2
runtime: go
api_version: go1
default_expiration: "7d"
handlers:
- url: /css
static_dir: static/css
http_headers:
Vary: Accept-Encoding
- url: /js
static_dir: static/js
http_headers:
Vary: Accept-Encoding
- url: /img
static_dir: static/img
http_headers:
Vary: Accept-Encoding
- url: /font
static_dir: static/font
http_headers:
Vary: Accept-Encoding
- url: /favicon.ico
static_files: static/favicon/favicon.ico
upload: static/favicon/favicon.ico
- url: /favicon
static_dir: static/favicon
http_headers:
Vary: Accept-Encoding
- url: /.*
script: _go_app
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(tumblr\.html)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*/RCS/.*)|
(\..*)|
(static/psd/.*)|
(store.doersguild.com/.*)|
)$