Django - Deployment and Production
Given this Nginx config snippet, what happens when a client requests
/media/image.png?
location /media/ {
alias /var/www/media/;
}/media/image.png?
location /media/ {
alias /var/www/media/;
}alias directive maps the URL path to a filesystem path directly./media/image.png maps to /var/www/media/image.png served by Nginx.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions