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.
This commit is contained in:
Albert Hopkins 2016-12-20 22:42:46 +00:00
parent 9eb881fea1
commit 35c0f571db
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
# Django settings for djangoproject project.
import os
ALLOWED_HOSTS = ['*']
DEBUG = True
TEMPLATE_DEBUG = DEBUG