When I start my Gunicorn service, I currently use this command to start it up:
gunicorn --certfile=/Projects/thebodyofchrist.us.crt --keyfile=/Projects/thebodyofchrist.us.key bodyofchrist.wsgi -b 0.0.0.0:443 -b 0.0.0.0:80 -w 10
For binding gunicorn to both http and https -- or setup apache2 to listen to http and redirect requests to https with existing parameters.
I have hundreds of links to the http://example.com/sample/request
and need it to automatically go to https://example.com/sample/request
gunicorn is hosting django.
Thanks for any help!