-
Notifications
You must be signed in to change notification settings - Fork 0
/
cms.toml
55 lines (41 loc) · 1.44 KB
/
cms.toml
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
[docker]
image = "directus/directus"
tag = "9.9.1"
[dependencies]
redis = "CACHE_REDIS"
postgres = "DB_CONNECTION_STRING"
[web]
domain = "cms.wafflehacks.org"
[environment]
public_url = "https://cms.wafflehacks.org"
db_client = "pg"
cache_enabled = "true"
cache_store = "redis"
cache_auto_purge = "true"
admin_email = "[email protected]"
email_from = "[email protected]"
email_transport = "ses"
email_ses_region = "us-west-2"
storage_locations = "s3"
storage_s3_driver = "s3"
auth_disable_default = "true"
auth_providers = "auth0"
auth_auth0_driver = "openid"
auth_auth0_issuer_url = "https://login.wafflehacks.org/"
auth_auth0_allow_public_registration = "true"
auth_auth0_require_verified_email = "true"
auth_auth0_icon = "fingerprint"
telemetry = "false"
[secrets]
key = { type = "generate", format = "base64", length = 32 }
secret = { type = "generate", format = "base64", length = 32 }
admin_password = "load"
email_ses_credentials__access_key_id = { type = "aws", role = "cms", part = "access" }
email_ses_credentials__secret_access_key = { type = "aws", role = "cms", part = "secret" }
storage_s3_key = { type = "aws", role = "cms", part = "access" }
storage_s3_secret = { type = "aws", role = "cms", part = "secret" }
storage_s3_bucket = "load"
storage_s3_region = "load"
auth_auth0_client_id = "load"
auth_auth0_client_secret = "load"
auth_auth0_default_role_id = "load"