I'm trying to setup a development version of a Django site (developed by someone else) so that I can make edits and test before putting changes live. I'm getting a HTTP 301 error when I try going into 127.0.0.1:8000.
I've tried other ports to ensure I'm not already using it.
I believe the settings should allow me to run this app, for example I've got:
DEBUG = True
ALLOWED_HOSTS = ['*']
The live site is running from HTTPS so I figure there is something within settings.py which is specifying SSL but I cannot find anything.
Two questions:
- Is there any way to emulate HTTPS using runserver?
- If not, what should I be looking for which might be forcing HTTPS?
I never managed to get this running using runserver. In the end I set it up on a apache server and it ran fine