[Answered ]-Vagrant – Django server – Why is host redirecting to https?

2👍

You need to add this in your settings.py file :

 SECURE_SSL_REDIRECT = False

For further reading, Read from here.

Leave a comment