bk-dss/config.cfg.example

33 lines
781 B
Plaintext
Raw Normal View History

DEBUG = True
2023-01-06 23:48:47 +01:00
REMEMBER_COOKIE_SECURE = True
SECRET_KEY = "CHANGE!ME"
2023-01-06 23:48:47 +01:00
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" ]
2016-03-22 00:41:31 +01:00
USER_DN = "cn={user},ou=people,dc=example,dc=com"
USER_ATTRS = {
2016-03-20 16:26:14 +01:00
'objectClass' : ['top', 'inetOrgPerson', 'organizationalPerson', 'person', 'posixAccount'],
'cn' : '{user}',
'gidNumber' : '{gid}',
2016-03-20 16:26:14 +01:00
'givenName' : '{gn}',
'homeDirectory' : '/home/{user}',
'loginShell' : '/bin/bash',
'mail' : '{user}@example.com',
2016-03-20 16:26:14 +01:00
'sn' : '{sn}',
'uid' : '{user}',
2016-03-20 17:17:13 +01:00
'uidNumber' : '{uid}',
'userPassword' : '{pass}'
2016-03-20 16:26:14 +01:00
}
GROUP_FILTER = "(objectClass=posixGroup)"
2016-03-22 00:41:31 +01:00
2015-06-17 20:22:52 +02:00
REDIS_HOST = "127.0.0.1"
2017-01-21 18:48:33 +01:00
REDIS_PASSWD = "foobared"