From d04869a3d545c82ec239e2f436f4290cd01da6de Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 23 Mar 2017 10:43:39 +0000 Subject: [PATCH] Added an ALLOWED_HOSTS setting to settings_testcrawl. - Legacy-Id: 13090 --- ietf/settings_testcrawl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/settings_testcrawl.py b/ietf/settings_testcrawl.py index 36533014f..967e3f5b7 100644 --- a/ietf/settings_testcrawl.py +++ b/ietf/settings_testcrawl.py @@ -35,6 +35,7 @@ CACHES = { PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) SERVER_MODE = 'test' +ALLOWED_HOSTS = ["127.0.0.1", "localhost:8000", "testserver", ] SILENCED_SYSTEM_CHECKS = [ "fields.W342", # Setting unique=True on a ForeignKey has the same effect as using a OneToOneField.