From 745145d5ed9cc5d9a2d68ea37128292dc5be341c Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Tue, 21 Oct 2014 20:20:31 +0000 Subject: [PATCH] Relax ALLOWED_HOSTS when not running in production. Fixes bug #1373. Commit ready for merge. - Legacy-Id: 8452 --- ietf/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/settings.py b/ietf/settings.py index 941ca6254..646474e31 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -474,4 +474,5 @@ if SERVER_MODE != 'production': } if 'SECRET_KEY' not in locals(): SECRET_KEY = 'PDwXboUq!=hPjnrtG2=ge#N$Dwy+wn@uivrugwpic8mxyPfHka' + ALLOWED_HOSTS = ['*',]