我是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找不到.我究竟做错了什么 ?我错过了重要的事吗?
最佳答案
这个:
原文链接:https://www.f2er.com/nginx/434589.htmllocation /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