I tried to launch a Django 1.11 project on production server. When I start the app I see the following error:
Invalid HTTP_HOST header: 'bla-bla-bla.bla-bla-vla.com'. You may need to add u'bla-bla-bla.bla-bla-vla.com' to ALLOWED_HOSTS**
But, host "bla-bla-bla.bla-bla-vla.com"
has been added to ALLOWED_HOSTS
in settings.py
already!
I tried to switch DEBUG
from False
to True
and back. It works fine, then.
What am I doing wrong?
ALLOWED_HOSTS=["bla-bla.com", "localhost", "127.0.0.1"]
in your setting.py file ;) – LinkerALLOWED_HOSTS
part ? – Linkerbla-bla-bla.bla-bla-vla.com
but you've got `bla-bla.bla-bla-bla.com in your ALLOWED_HOSTS (bla-bla.bla-bla-bla.com instead of bla- bla-bla.bla-bla-vla.com) – Cleanthes