better TA_HOST error handling

pull/437/head
simon 1 year ago
parent 571c2ce3a4
commit 4dfc9cef52
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -32,7 +32,9 @@ SECRET_KEY = PW_HASH.hexdigest()
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = bool(environ.get("DJANGO_DEBUG"))
ALLOWED_HOSTS = [i.strip() for i in environ.get("TA_HOST").split()]
ALLOWED_HOSTS = []
if environ.get("TA_HOST"):
ALLOWED_HOSTS = [i.strip() for i in environ.get("TA_HOST").split()]
CSRF_TRUSTED_ORIGINS = []
for host in ALLOWED_HOSTS:

Loading…
Cancel
Save