-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
59 lines (46 loc) · 1.05 KB
/
app.yaml
File metadata and controls
59 lines (46 loc) · 1.05 KB
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: destiny-db
version: 1
runtime: python27
api_version: 1
default_expiration: 0
instance_class: F2
threadsafe: true
handlers:
- url: /_ah/warmup
script: dashboard.user.app
- url: /(ezdemo[.]html)
static_files: dashboard/\1
upload: dashboard/ezdemo.html
- url: /(google38371e7df630b0a7[.]html)
static_files: dashboard/\1
upload: dashboard/google38371e7df630b0a7.html
- url: /(light[.]html)
static_files: dashboard/\1
upload: dashboard/light.html
- url: /(realtime[.]html)
static_files: dashboard/\1
upload: dashboard/realtime.html
- url: /(.*[.](css|ico|js|txt))
static_files: dashboard/\1
upload: .*[.](css|ico|js|txt)
- url: /(admin/?|admin/.*)
secure: always
login: admin
script: dashboard.admin.app
- url: /(api/?|api/.*)
secure: always
script: dashboard.api.app
- url: /(ez/?|ez/.*)
secure: always
script: dashboard.ez.app
- url: /(db/?|db/.*)
secure: always
script: dashboard.db.app
- url: /.*
secure: always
script: dashboard.user.app
inbound_services:
- warmup
libraries:
- name: jinja2
version: latest