27
- Yes, thatβs just how it works.
- The exact implementation depends on the webserver but in the case of nginx, itβs recommended to mark the location as internal to prevent external access.
- Nginx can asynchronously serve files while with Django you need one thread per request which can get problematic for higher numbers of parallel requests.
Remember to send a X-Accel-Redirect header for nginx instead of X-Sendfile.
See http://wiki.nginx.org/XSendfile for more information.
Source:stackexchange.com