From 35c0f571db1e5b32977f4b6619f5e2e6d5e1ec80 Mon Sep 17 00:00:00 2001 From: Albert Hopkins Date: Tue, 20 Dec 2016 22:42:46 +0000 Subject: [PATCH] airport: settings.py: add ALLOWED_HOSTS=['*'] This is so you don't have to manually set ALLOWED_HOSTS in the appliance. It's promiscuous but you can always reset it later. --- appliances/airport/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appliances/airport/settings.py b/appliances/airport/settings.py index 72d4a32..142712e 100644 --- a/appliances/airport/settings.py +++ b/appliances/airport/settings.py @@ -1,6 +1,8 @@ # Django settings for djangoproject project. import os +ALLOWED_HOSTS = ['*'] + DEBUG = True TEMPLATE_DEBUG = DEBUG