forked from googlearchive/cloud-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayground.yaml
More file actions
46 lines (38 loc) · 951 Bytes
/
Copy pathplayground.yaml
File metadata and controls
46 lines (38 loc) · 951 Bytes
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
handlers:
- url: /playground/js
static_dir: app/js
secure: always
mime_type: text/javascript; charset=utf-8
- url: /playground/css
static_dir: app/css
secure: always
mime_type: text/css; charset=utf-8
- url: /playground/img
static_dir: app/img
secure: always
# Do not be over inclusive
- url: /playground/(([-_a-z0-9]*)\.html)
static_files: app/\1
upload: app/.*\.html
secure: always
mime_type: text/html; charset=utf-8
- url: (/playground/?|/playground/p/[^/]*/?)?
static_files: app/index.html
upload: app/index.html
secure: always
mime_type: text/html; charset=utf-8
- url: /playground/p/.*/check_expiration
script: __pg.playground.internal_app
secure: always
login: admin
- url: /playground/.*
script: __pg.playground.app
secure: always
- url: /_ah/warmup
script: __pg.playground.app
secure: always
login: admin
- url: /_ah/start
script: __pg.playground.app
secure: always
login: admin