24 lines
738 B
Python
24 lines
738 B
Python
"""Default configuration for lumi2.
|
|
|
|
The values here should be overridden as necessary prior to deployment.
|
|
"""
|
|
|
|
SECRET_KEY = 'INSECURE'
|
|
ADMIN_PASSWORD = 'pbkdf2:sha256:260000$J9yKJOAvWfvaO9Op$f959d88402f67a5143808a00e35d17e636546f1caf5a85c1b6ab1165d1780448'
|
|
|
|
#SERVER_NAME = 'lumi2.example.com:80'
|
|
|
|
SITE_TITLE = 'LUMI 2'
|
|
SITE_AUTHOR = 'LUMI 2 Development Team'
|
|
SITE_DESCRIPTION = 'A simple frontend for LDAP account management.'
|
|
|
|
LDAP_HOSTNAME = 'ldap://ldap.example.com'
|
|
LDAP_BIND_USER_DN = 'cn=admin,dc=example,dc=com'
|
|
LDAP_BIND_USER_PASSWORD = 'secret'
|
|
LDAP_BASE_DN = 'dc=example,dc=com'
|
|
LDAP_USERS_OU = 'ou=users,dc=example,dc=com'
|
|
LDAP_GROUPS_OU = 'ou=groups,dc=example,dc=com'
|
|
|
|
LOG_FILE_MAX_SIZE = 0
|
|
|
|
MAX_CONTENT_LENGTH = 8_000_000
|