Concept Flow - Nginx as reverse proxy
Client sends HTTP request
Nginx receives request
Nginx forwards request to Django app
Django app processes request
Django app sends response back to Nginx
Nginx sends response to client
The client sends a request to Nginx, which forwards it to the Django app. The app processes it and sends the response back through Nginx to the client.