在debian squeeze中我的Nginx中有一个非常默认的站点启用设置,我现在试图让它在myhost / munin /上提供我的munin图表
下面是我添加到配置中的位置
location /munin
{
root /var/cache/munin/www/;
index index.htm index.html;
}
这是我收到的错误:
2012/07/09 23:52:03 [error] 3598#0: *13 "/var/cache/munin/www/munin/index.htm" is not found (2: No such file or directory),client: 93.*.*.*,server:,request: "GET /munin/ HTTP/1.1",host: ""
这个设置习惯于在apache中“正常工作”.我是Nginx的新手,所以有点迷失为什么在寻找路径时添加额外的/ munin.任何建议?
最佳答案
您需要使用
原文链接:https://www.f2er.com/nginx/435314.htmlalias
指令,而不是root:
location /munin/ {
alias /var/cache/munin/www/;
}