-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
61 lines (49 loc) · 1.14 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
application: apprtc
version: 9
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /(.*\.html)
static_files: html/\1
upload: html/(.*\.html)
- url: /manifest.json
static_files: html/manifest.json
upload: html/manifest.json
- url: /robots.txt
static_files: html/robot.txt
upload: html/robots.txt
- url: /callstats
static_dir: third_party/callstats
- url: /images
static_dir: images
- url: /js
static_dir: js
- url: /css
static_dir: css
- url: /compute/.*
script: apprtc.app
login: admin
- url: /probe.*
script: probers.app
secure: always
- url: /.*
script: apprtc.app
secure: always
libraries:
- name: jinja2
version: latest
- name: ssl
version: latest
- name: pycrypto
version: latest
env_variables:
BYPASS_JOIN_CONFIRMATION: false
# Only change these while developing, do not commit to source!
# Use appcfg.py --env_variable=CALLSTATS_APP_ID:ID \
# --env_variable=CALLSTATS_APP_SECRET:SECRET \
# --env_variable=ICE_SERVER_API_KEY:KEY \
# in order to replace variables when deploying.
CALLSTATS_APP_ID: none
CALLSTATS_APP_SECRET: none
ICE_SERVER_API_KEY: none