forked from arsfeld/fog-web2py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
42 lines (36 loc) · 763 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
application: web2py
version: 1
api_version: 1
runtime: python
handlers:
- url: /(?P<a>.+?)/static/(?P<b>.+)
static_files: applications/\1/static/\2
upload: applications/(.+?)/static/(.+)
secure: optional
- url: /admin-gae/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
- url: /_ah/queue/default
script: gaehandler.py
login: admin
- url: .*
script: gaehandler.py
secure: optional
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*/RCS/.*)|
(\..*)|
((admin|examples|welcome)\.tar)|
(applications/(admin|examples)/.*)|
(applications/.*?/databases/.*) |
(applications/.*?/errors/.*)|
(applications/.*?/cache/.*)|
(applications/.*?/sessions/.*)|
)$