app_settings: disable by default (#39400)

This commit is contained in:
Benjamin Dauvergne 2020-01-29 19:49:31 +01:00
parent 839620aeee
commit 5d3bbc5db4
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
class AppSettings(object):
__DEFAULTS = {
'ENABLE': True,
'ENABLE': False,
'CREATE_USER': True,
'REALM': None,
'LDAP_BACKEND': True,

View File

@ -16,3 +16,4 @@ if 'postgres' in DATABASES['default']['ENGINE']:
DATABASES['default'][key[2:]] = os.environ[key]
ALLOWED_HOSTS = ['localhost']
A2_AUTH_KERBEROS_ENABLE = True