I'm running a Django app located at `/home/django/product_blog`.
Here are the contents of my nginx file at `/etc/nginx/sites-available/BRBR2`.
server {
listen 80;
error_log /var/log/nginx/debug.log debug;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /home/django/product_blog;
}
location / {
include uwsgi_params;
uwsgi_pass unix:/home/django/product_blog/product_blog.sock;
}
}
The file at `/var/log/nginx/error.log` shows nothing.
How do I find the source of the 400 error?