diff options
Diffstat (limited to 'app/app/settings.py')
| -rw-r--r-- | app/app/settings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/app/settings.py b/app/app/settings.py index abf4cbc..d472675 100644 --- a/app/app/settings.py +++ b/app/app/settings.py @@ -28,7 +28,7 @@ SECRET_KEY = 'h$r_bwlp@#h#y#%&qhw-n=gb2%wva1d_h65+o94u&!a#%iv&lo' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = CONFIG['allowed_hosts'] # Application definition @@ -135,6 +135,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' +STATIC_ROOT = CONFIG['static_root'] LOGIN_URL = '/login/' LOGIN_REDIRECT_URL = '/' |
