I have python/django app on Heroku (Cedar stack) and would like to make it accessible over https only. I have enabled the "ssl piggyback"-option, and can connect to it via https.
But what is the best way to disable http access, or redirect to https?
|
|
|
Combining the answer from @CraigKerstiens and @allanlei into something I have tested, and verified to work. Heroku sets the HTTP_X_FORWARDED_PROTO to https when request is ssl, and we can use this to check:
|
|||||||||||||||||
|
|
Not sure if @CraigKerstiens's answer takes into account that If you are running Django with gunicorn, another way to do it is to add the following to gunicorn's config
Run with some like this in your Procfile
By setting gunicorn's Now @CraigKerstiens's middleware will work properly, including any calls to Note: Django also has the same config setting call |
|||
|
|
|
What framework are you using for your application? If you're using Django you could simple use some middleware similar to:
|
|||||||
|