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:
parent
9eb881fea1
commit
35c0f571db
|
@ -1,6 +1,8 @@
|
|||
# Django settings for djangoproject project.
|
||||
import os
|
||||
|
||||
ALLOWED_HOSTS = ['*']
|
||||
|
||||
DEBUG = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
|
|
Loading…
Reference in New Issue