-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
59 lines (49 loc) · 1.02 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
application: hextmebeta
version: 4
api_version: 1
runtime: python
derived_file_type:
- python_precompiled
handlers:
- url: /_ah/stats.*
script: $PYTHON_LIB/google/appengine/ext/appstats/ui.py
login: admin
- url: /(?P<a>.+?)/static/(?P<b>.+)
static_files: applications/\1/static/\2
upload: applications/(.+?)/static/(.+)
secure: optional
expiration: "90d"
- url: /_ah/admin/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
- url: /_ah/queue/default
script: gaehandler.py
login: admin
- url: .*
script: gaehandler.py
secure: optional
admin_console:
pages:
- name: Appstats
url: /_ah/stats
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*/RCS/.*)|
(\..*)|
(applications/(admin|examples)/.*)|
((admin|examples|welcome)\.tar)|
(applications/.*?/databases/.*) |
(applications/.*?/errors/.*)|
(applications/.*?/cache/.*)|
(applications/.*?/sessions/.*)|
)$
builtins:
- remote_api: on
- datastore_admin: on