根目录在nginx中显示404

时间:2015-01-21 06:21:54

标签: nginx

我是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未找到。我究竟做错了什么 ?我错过了一些重要的事情吗?

1 个答案:

答案 0 :(得分:8)

这个:

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

导致/ www / myproject / files_storage / images路径,如果你设置error_log就很明显了。所以使用"别名"指令代替" root"

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