mirror of
https://github.com/tubearchivist/tubearchivist
synced 2024-11-02 09:41:07 +00:00
better TA_HOST error handling
This commit is contained in:
parent
571c2ce3a4
commit
4dfc9cef52
@ -32,7 +32,9 @@ SECRET_KEY = PW_HASH.hexdigest()
|
|||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = bool(environ.get("DJANGO_DEBUG"))
|
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 = []
|
CSRF_TRUSTED_ORIGINS = []
|
||||||
for host in ALLOWED_HOSTS:
|
for host in ALLOWED_HOSTS:
|
||||||
|
Loading…
Reference in New Issue
Block a user