Add splitting to convert to list
This commit is contained in:
parent
a501f443c8
commit
cf8630a513
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ SECRET_KEY = "django-insecure-q=ps#iypevr!3zfpwtfp3lw#4r3%oyj*(2=*iq^8f4_zbodi^(
|
|||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = True
|
||||
|
||||
ALLOWED_HOSTS = os.getenv('DJANGO_ALLOWED_HOSTS')
|
||||
CSRF_TRUSTED_ORIGINS = os.getenv('DJANGO_CSRF_TRUSTED_ORIGINS')
|
||||
ALLOWED_HOSTS = os.getenv('DJANGO_ALLOWED_HOSTS').split(',')
|
||||
CSRF_TRUSTED_ORIGINS = os.getenv('DJANGO_CSRF_TRUSTED_ORIGINS').split(',')
|
||||
|
||||
# Application definition
|
||||
|
||||
|
|
Loading…
Reference in a new issue