This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
u-auth/debian/settings.py

27 lines
492 B
Python

import os
DEBUG = False
TEMPLATE_DEBUG = False
ALLOWED_HOSTS = [
'*',
]
LANGUAGE_CODE = 'fr-fr'
TIME_ZONE = 'Europe/Paris'
# LDAP_CONF = {
# 'url': 'ldap://localhost',
# 'bind_dn': 'cn=admin,dc=dev,dc=entrouvert,dc=org',
# 'options': {},
# 'bind_passwd': 'changeme',
# 'dn': 'ou=users,dc=dev,dc=entrouvert,dc=org',
# }
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(VAR_DIR, 'db.sqlite3'),
}
}