forked from MozillaFoundation/foundation.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
61 lines (61 loc) · 1.56 KB
/
app.json
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
{
"name": "network",
"description": "The Mozilla Network site",
"addons": [
"heroku-postgresql:hobby-dev"
],
"env": {
"HEROKU_APP_NAME": {
"required": true
},
"DJANGO_SECRET_KEY": {
"generator": "secret"
},
"ASSET_DOMAIN": {
"required": true
},
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_LOCATION": {
"required": true
},
"AWS_S3_CUSTOM_DOMAIN": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"AWS_STORAGE_BUCKET_NAME": {
"required": true
},
"DEBUG": "False",
"CORS_WHITELIST": "*",
"XSS_PROTECTION": "True",
"CONTENT_TYPE_NO_SNIFF": "True",
"SET_HSTS": "True",
"SSL_REDIRECT": "True",
"X_FRAME_OPTIONS": "DENY",
"USE_S3": "True",
"PULSE_API_DOMAIN": "network-pulse-api-production.herokuapp.com",
"PULSE_DOMAIN": "www.mozillapulse.org",
"CSP_DEFAULT_SRC": "'none'",
"CSP_SCRIPT_SRC": "'self' 'unsafe-inline' cdn.optimizely.com https://www.google-analytics.com/analytics.js",
"CSP_STYLE_SRC": "'self' 'unsafe-inline' code.cdn.mozilla.net fonts.googleapis.com",
"CSP_IMG_SRC": "* data:",
"CSP_FONT_SRC": "'self' fonts.gstatic.com fonts.googleapis.com code.cdn.mozilla.net",
"CSP_CONNECT_SRC": "*",
"CSP_MEDIA_SRC": "'self'",
"CSP_CHILD_SRC": "'self'",
"CSP_FORM_ACTION": "'self' https://www.mozilla.org/en-US/newsletter/",
"EXECUTE_FAKE_DATA": "True"
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}