Django, Gunicorn, Nginx, & HTTPS

I can find many examples of using Django, Gunicorn, and Nginx for an application, and also ways to implement HTTPS on Nginx, but not all together.  This post will document my final configurations and explain my decisions. First, the code: nginx.conf: worker_processes auto; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile … Continue reading Django, Gunicorn, Nginx, & HTTPS