Django - Deployment and Production
What will happen if Nginx is configured with this snippet and Django is running on port 8000?
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
}
And a client requests /admin/?