forked from gae-init/gae-init
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
74 lines (62 loc) · 1.3 KB
/
Copy pathapp.yaml
File metadata and controls
74 lines (62 loc) · 1.3 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
63
64
65
66
67
68
69
70
71
72
73
74
service: default
instance_class: F1
runtime: python27
api_version: 1
threadsafe: true
builtins:
- appstats: on
- deferred: on
- remote_api: on
inbound_services:
- warmup
libraries:
- name: setuptools
version: latest
- name: ssl
version: latest
error_handlers:
- file: templates/error_static.html
handlers:
- url: /favicon.ico
static_files: static/img/favicon.ico
upload: static/img/favicon.ico
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /p/(.*\.ttf)
static_files: static/\1
upload: static/(.*\.ttf)
mime_type: font/ttf
expiration: '365d'
- url: /p/(.*\.woff2)
static_files: static/\1
upload: static/(.*\.woff2)
mime_type: font/woff2
expiration: '365d'
- url: /p/
static_dir: static/
expiration: '365d'
- url: /.*
script: main.app
secure: always
redirect_http_response_code: 301
skip_files:
- ^(.*/)?#.*#
- ^(.*/)?.*/RCS/.*
- ^(.*/)?.*\.bak$
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*~
- ^(.*/)?Icon\r
- ^(.*/)?\..*
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^lib/.*
- ^static/dev/.*
- ^static/ext/.*\.coffee
- ^static/ext/.*\.css
- ^static/ext/.*\.js
- ^static/ext/.*\.less
- ^static/ext/.*\.json
- ^static/src/.*