From 7fccdd4c4e8b02a44b0044e54665976e1aca17e5 Mon Sep 17 00:00:00 2001 From: Mike Young Date: Tue, 19 Nov 2019 22:20:16 -0500 Subject: [PATCH] Allow all hosts by default --- frontend/frontend/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/frontend/settings.py b/frontend/frontend/settings.py index b319df6..8747a60 100755 --- a/frontend/frontend/settings.py +++ b/frontend/frontend/settings.py @@ -25,7 +25,7 @@ SECRET_KEY = "@(9b9jslgg41u1u=mr)-2*-n2x0vef0zsy39*z@sz18&tvow18" # SECURITY WARNING: don't run with debug turned on in production! DEBUG = False -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ["*"] # Application definition