-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.dist
30 lines (26 loc) · 854 Bytes
/
.env.dist
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
# django-environ
# Copy to .env and set your environment
DEBUG=False
SECRET_KEY=your-secret-key
ADMINS="John Doe: [email protected]"
ALLOWED_HOSTS=127.0.0.1
CSRF_TRUSTED_ORIGINS=https://fqdn1,https://fqdn2
# DDAM
# DDAM_ASSET_MAX_FILESIZE: Integer MB, e.g "3"
DDAM_ASSET_MAX_FILESIZE=3
# Email
EMAIL_SUBJECT_PREFIX="[DDMA]: "
EMAIL_HOST=smtp.example.com
EMAIL_HOST_PASSWORD=***********
EMAIL_PORT=587
# LDAP
AUTH_LDAP=false
AUTH_LDAP_SERVER_URI="ldaps://dc.fqdn"
AUTH_LDAP_BIND_DN="cn=queryuser,dc=example,dc=org"
AUTH_LDAP_BIND_PASSWORD="your-secret"
AUTH_LDAP_USERS_DN="cn=Users,dc=example,dc=org"
AUTH_LDAP_GROUP_SUPERUSERS="cn=admin,cn=Users,dc=example,dc=org"
AUTH_LDAP_GROUP_STAFF="cn=configgroup,cn=Users,dc=example,dc=org"
AUTH_LDAP_MIRROR_GROUPS_LIST=ldapgroup1,ldapgroup2