Performance: Nginx as reverse proxy
HIGH IMPACT
This affects server response time and page load speed by efficiently managing client requests before they reach the Django app.
Configure Nginx as a reverse proxy to forward requests to Django and serve static files directly.
Directly exposing Django's development server to the internet without a reverse proxy.| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Direct Django server exposure | N/A | N/A | Higher due to slower response | [X] Bad |
| Nginx reverse proxy with static file serving | N/A | N/A | Lower due to faster response and caching | [OK] Good |