From 798ab372459006765ccc8f6f8b8494fd931996dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20=20MENAGER?= <herve.menager@pasteur.fr> Date: Thu, 3 Aug 2017 10:35:41 +0200 Subject: [PATCH] allow any host (for test purpose) Former-commit-id: a2eef89e89cb75202efd22170b6d4a6576811e5a --- ippisite/ippisite/settings.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ippisite/ippisite/settings.py b/ippisite/ippisite/settings.py index 61d34fbd..d2d9b930 100644 --- a/ippisite/ippisite/settings.py +++ b/ippisite/ippisite/settings.py @@ -27,7 +27,9 @@ DEBUG = True SHOW_TOOLBAR_CALLBACK = True -ALLOWED_HOSTS = ["127.0.0.1","localhost",] +ALLOWED_HOSTS = ["*"] +#ALLOWED_HOSTS = ["127.0.0.1","localhost",] + INTERNAL_IPS= ["127.0.0.1","localhost",] # Application definition -- GitLab