django,nginx,gunicorn 404在除

时间:2018-05-23 07:29:12

标签: django nginx gunicorn

我的问题是每当我尝试查看不是根网页的网页时,/ user / nginx会返回404错误并且错误日志指出 " /usr/share/nginx/html/user/login/index.html"找不到。

当前的nginx配置

server {
    listen 80;
    server_name ip_address;

    location = /static {
         root /opt/scrumban/kanbanboard/;
         autoindex off;
     }

    location = / {
        include proxy_params;
        proxy_pass http://unix:/opt/scrumban/kanbanboard/kanban.sock;
    }
}

1 个答案:

答案 0 :(得分:4)

删除那些=个标志;它们意味着只匹配路径“/”和“/ static”。没有它们匹配的符号作为前缀,这就是你想要的。