Topic
Django
Running Django in production – gunicorn, nginx, WSGI, and the deployment failures that never show up on your laptop.
Never run django.template.Template() on HTML you didn’t write
A single stored record took an endpoint down for a week. It contained valid, working markup — for a different template language. Django compiled it anyway, because that is what you asked it to do.
Fix Gunicorn’s TimeoutError: [Errno 110] Connection timed out in sock.sendall()
Your view already finished. The worker got stuck handing the response over - and raising --timeout, the usual first move, makes it last longer instead of fixing it.
How To Deploy a Django project on an Ubuntu server with Nginx
Here's a general outline of How to Deploy a Django project on an Ubuntu server with Nginx: Server Setup: Start by setting up an Ubuntu server. SSH into…