Nginx Autoindex给了我一个403

时间:2014-08-30 06:27:21

标签: nginx config http-status-code-403

我最近设置了一个Nginx Web服务器,我正在尝试使目录显示。经过研究,我发现了autoindex on;选项。即使这样做,我仍然在尝试访问/ test /目录时收到403错误。我不确定我是不是只是愚蠢或者这实际上是一个问题。

这是我的服务器{}配置位

server{
    location /{
            index index.html;
            autoindex on;
    }
    location /test{
            autoindex on;
    }
}

非常感谢任何和所有帮助。

2 个答案:

答案 0 :(得分:2)

看看:

  1. root服务器或位置指令
  2. 文件系统中实际文件夹的权限。它必须是755 文件夹和644文件
  3. 我不确定,indexautoindex之间也可能发生冲突 {{1}}指令。

答案 1 :(得分:0)

试试这个(添加了斜杠):

location /test/ {
        autoindex on;
}