根目录在nginx中显示404

前端之家收集整理的这篇文章主要介绍了根目录在nginx中显示404前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我是Nginx服务器的新手.我试图为服务图像设置一个新网址“/ images /”.我在启用站点文件夹中编辑了bi.site文件.

server {
   listen *:80;
   access_log /var/log/myproject/access_log;
    location / {
        proxy_pass         http://127.0.0.1:5000/;
        proxy_redirect     off;

        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    }
    location /images/ {
        root /www/myproject/files_storage;
    }

}

在/ www / myproject / files_storage位置我输入了一个temp.txt文件.

当我把http://www.main_url/images/temp.txt它显示404找不到.我究竟做错了什么 ?我错过了重要的事吗?

最佳答案
这个:

location /images/ {
        root /www/myproject/files_storage;
    }

结果在/ www / myproject / files_storage / images路径中,如果你设置error_log就很明显了.所以使用“alias”指令代替“root”

http://nginx.org/en/docs/http/ngx_http_core_module.html#alias

原文链接:https://www.f2er.com/nginx/434589.html

猜你在找的Nginx相关文章