From f79211ee1467e570171d6395e0a3f542e6bb4e03 Mon Sep 17 00:00:00 2001 From: Nicolas Setton Date: Tue, 10 Oct 2017 11:50:22 -0400 Subject: [PATCH] Allow other hosts to connect to the server This allows a machine to serve contents for other servers. --- compile_server/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile_server/settings.py b/compile_server/settings.py index 44ff743..6488407 100644 --- a/compile_server/settings.py +++ b/compile_server/settings.py @@ -25,7 +25,7 @@ SECRET_KEY = 'ci!nks6jg!qxsk2gc1hpdld=&kxqqqotm)(5$^ork&=o#t3+v$' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ['*'] # Application definition