@H_404_1@在debian squeeze中我的Nginx中有一个非常默认的站点启用设置,我现在试图让它在myhost / munin /上提供我的munin图表
@H_404_1@下面是我添加到配置中的位置
@H_404_1@
location /munin
{
root /var/cache/munin/www/;
index index.htm index.html;
}
@H_404_1@这是我收到的错误:
@H_404_1@
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: ""
@H_404_1@这个设置习惯于在apache中“正常工作”.我是Nginx的新手,所以有点迷失为什么在寻找路径时添加额外的/ munin.任何建议?最佳答案