2020-08-17 09:05:01 +00:00
|
|
|
SECRET_KEY = "change me before you go in production"
|
2020-08-17 16:49:05 +00:00
|
|
|
NAME = "MyDomain"
|
2020-08-17 09:53:30 +00:00
|
|
|
# LOGO = "https://path/to/your/organization/logo.png"
|
2020-08-17 09:05:01 +00:00
|
|
|
|
2020-08-17 09:38:25 +00:00
|
|
|
# If unset, language is detected
|
2020-08-17 09:56:03 +00:00
|
|
|
LANGUAGE = "en"
|
2020-08-17 09:38:25 +00:00
|
|
|
|
2020-08-17 09:05:01 +00:00
|
|
|
[LDAP]
|
2020-08-18 15:39:34 +00:00
|
|
|
URI = "ldap://ldap"
|
|
|
|
ROOT_DN = "dc=mydomain,dc=tld"
|
|
|
|
BIND_DN = "cn=admin,dc=mydomain,dc=tld"
|
2020-08-17 09:05:01 +00:00
|
|
|
BIND_PW = "admin"
|
2020-08-19 14:20:57 +00:00
|
|
|
|
2020-08-20 08:45:33 +00:00
|
|
|
# Filter to match users on sign in. Supports a variable
|
|
|
|
# {login}. For sigin against uid or mail use:
|
|
|
|
# USER_FILTER = "(|(uid={login})(mail={login}))"
|
2020-08-19 14:56:04 +00:00
|
|
|
USER_FILTER = "(|(uid={login})(cn={login}))"
|
2020-08-20 08:45:33 +00:00
|
|
|
|
|
|
|
# Filter to match admin users. If your server has memberof
|
|
|
|
# you can filter against group membership
|
2020-08-19 14:20:57 +00:00
|
|
|
ADMIN_FILTER = "cn=Jane Doe"
|