mirror of
https://github.com/moepman/bk-dss
synced 2024-11-17 19:39:11 +01:00
33 lines
781 B
Plaintext
33 lines
781 B
Plaintext
DEBUG = True
|
|
REMEMBER_COOKIE_SECURE = True
|
|
SECRET_KEY = "CHANGE!ME"
|
|
SESSION_COOKIE_SECURE = True
|
|
SESSION_TIMEOUT = 3600
|
|
|
|
LDAP_CA = "/etc/ldap/ssl/CA.crt"
|
|
LDAP_URI = "ldaps://ldap.example.com"
|
|
LDAP_BASE = "dc=example,dc=com"
|
|
|
|
ADMINS = [ "cn=admin,ou=people,dc=example,dc=com" ]
|
|
|
|
USER_DN = "cn={user},ou=people,dc=example,dc=com"
|
|
|
|
USER_ATTRS = {
|
|
'objectClass' : ['top', 'inetOrgPerson', 'organizationalPerson', 'person', 'posixAccount'],
|
|
'cn' : '{user}',
|
|
'gidNumber' : '{gid}',
|
|
'givenName' : '{gn}',
|
|
'homeDirectory' : '/home/{user}',
|
|
'loginShell' : '/bin/bash',
|
|
'mail' : '{user}@example.com',
|
|
'sn' : '{sn}',
|
|
'uid' : '{user}',
|
|
'uidNumber' : '{uid}',
|
|
'userPassword' : '{pass}'
|
|
}
|
|
|
|
GROUP_FILTER = "(objectClass=posixGroup)"
|
|
|
|
REDIS_HOST = "127.0.0.1"
|
|
REDIS_PASSWD = "foobared"
|