I'm trying to run a django server with ./manage.py runserver
But appears this error:
Invalid HTTP_HOST header: '127.0.0.1:8000'. You may need to add '127.0.0.1' to ALLOWED_HOSTS.
Please help me.
Just do this
myapp
|______myapp
|______settings.py
Inside that there should be a line:
ALLOWED_HOSTS = []
Make it instead
ALLOWED_HOSTS = ["127.0.0.1"]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With