A detailed guide on configuring Nginx as a reverse proxy for Django, covering the theory behind WSGI/ASGI, static and media files, request flow diagrams, SSL termination, and a complete production-ready configuration example.
A step-by-step guide on switching a Django deployment on a VPS from the WSGI server uWSGI to an ASGI stack based on Gunicorn and Uvicorn workers, including how to run both stacks side by side for two different projects.
A guide on how to optimize your Django ORM queries for better performance, including techniques like select_related, prefetch_related, and more.
A blog post about using python-decouple in Django projects, comparing it with other solutions and providing usage examples.