I'm facing a Django DisallowedHost error, googling the solution lead me to add the domains in question to the ALLOWED_HOSTS list in settings.py.
However, doing so causes the connection to flat out refuse to connect, and seemingly force https.
DisallowedHost Error log:
django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.davixxa.net'. You may need to add 'www.davixxa.net' to ALLOWED_HOSTS.
This being the specific error of interest.
Settings.py: https://pastebin.com/1Mz9xNSC
Any help would be greatly appreciated.