-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp_production.yaml
executable file
·62 lines (51 loc) · 1.11 KB
/
app_production.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
service: default
runtime: python27
api_version: 1
threadsafe: true
includes:
- config/vars.yaml
default_expiration: "1000d"
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
handlers:
- url: /c
static_dir: static/c
- url: /i
static_dir: static/i
- url: /j
static_dir: static/j
- url: /favicon.ico
static_files: static/i/favicon.png
upload: static/i/favicon.png
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /(dev|job).*
script: app.app
login: admin
secure: always
- url: /.*
script: app.app
secure: always
error_handlers:
- file: views/static/errors/default.html
- error_code: dos_api_denial
file: views/static/errors/dos.html
- error_code: over_quota
file: views/static/errors/quota.html
- error_code: timeout
file: views/static/errors/timeout.html
skip_files:
- ^(.*/)?.*\.py[co]$
- ^(.*/)?\..*$
- ^(.*/)?deploy.yaml$
- ^config/.*\.template\..*$
- ^tests/.*$
- ^(.*/)?readme.*$
- ^lib/gae_deploy/lib/.*$
- ^lib/(gae_html|gae_validators)/test\.py$
- ^lib/(sendgrid-python|python-http-client)/(examples|test)/.*$
- ^lib/pip/.*$