forked from nlake44/UserInfuser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
116 lines (88 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
application: cloudcaptive-userinfuser
version: 1
runtime: python27
api_version: 1
threadsafe: false
handlers:
# Admin Paths
- url: /test/.*
script: serverside.testing.test.app
login: admin
# Analytics
- url: /fantasm/.*
script: fantasm.main.APP
login: admin
- url: /hello
script: serverside.main.app
login: admin
- url: /runanalytics
script: serverside.main.app
login: admin
- url: /stats.*
script: $PYTHON_LIB/google/appengine/ext/appstats/ui.py
login: admin
secure: always
- url: /getanalytics
script: serverside.main.app
secure: always
# NonSecure static HTML/image/style content
- url: /
script: serverside.main.app
secure: always
- url: /console/
static_dir: static/console
- url: /html/
static_dir: static/html
- url: /images/
static_dir: static/images
- url: /css/
static_dir: static/css
- url: /lib/
static_dir: static/lib
- url: /js/
static_dir: static/js
# Individual files
- url: /favicon\.ico
static_files: static/images/favicon.ico
upload: static/images/favicon.ico
- url: /googlehostedservice\.html
static_files: static/googlehostedservice.html
upload: static/googlehostedservice.html
- url: /robots\.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /sitemap\.xml
static_files: static/sitemap.xml
upload: static/sitemap.xml
- url: /BingSiteAuth.xml
static_files: static/BingSiteAuth.xml
upload: static/BingSiteAuth.xml
# Upload badge, and download badge
- url: /badge/.*
script: serverside.main.app
#Secure
- url: /(login|logout|account|admin|newslettersignup|signup)
script: serverside.main.app
secure: always
- url: /accinfo.*
script: serverside.accinfo.app
secure: always
- url: /adminconsole.*
script: serverside.console.app
secure: always
- url: /api/.*
script: serverside.api.api.app
secure: optional
- url: /(logevents)
script: serverside.logs.app
secure: optional
- url: /(updateaccount)
script: serverside.update_account.app
secure: optional
# Not found
- url: /.*
#static_dir: static/html/404\.html
script: serverside.not_found.app
builtins:
#- datastore_admin: on
- appstats: on