From 53b7291b31d17aac7ab428bd4beaee62a76de26d Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 8 Mar 2017 17:30:49 +0100 Subject: [PATCH] localhost added to ALLOWED_HOSTS --- smash/smash/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smash/smash/settings.py b/smash/smash/settings.py index ced5f830..e8276ccc 100644 --- a/smash/smash/settings.py +++ b/smash/smash/settings.py @@ -19,7 +19,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/ -ALLOWED_HOSTS = ['prc.parkinson.lu'] +ALLOWED_HOSTS = ['prc.parkinson.lu', 'localhost'] DEBUG = True -- GitLab