Closed conorsch closed 7 years ago
Pretty sure this is caused by lack of ALLOWED_HOSTS
in settings/production.py
. Testing a few configs to confirm.
Turns out we need 127.0.0.1
explicitly allowed in the hosts list to support the nginx reverse proxy.
Mind-bendingly, the prod deployment logic currently seems to required that
debug=True
. This must be fixed prior to production roll-out, but we're leavingdebug=True
in place during staging.See #37 for a bit of context.