当我访问时test.example.com
,我得到一个页面,上面只写着Bad Request (400)
。
我正在运行位于的 Django 应用程序/home/django/product_blog
。
以下是我的 nginx 文件的内容/etc/nginx/sites-available/BRBR2
。
server {
listen 80;
server_name test.example.com;
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;
}
}
当我尝试加载站点后转到调试文件时,我看到了以下内容:https://pastebin.com/GchPd1MD。
文件未/var/log/nginx/error.log
显示任何内容。
如何找到 400 错误的来源?