nginx autoindex 接收 403 Forbidden

nginx autoindex 接收 403 Forbidden

我在使用 nginx 和 autoindex 时遇到了问题。

尽管我已将其放入网站主机,它仍然会抛出“403 -Forbidden at me”

     location /pics {
             autoindex on;              
     }

这就是我的配置

        server {

        listen   80;
        server_name www.domain.com;

        access_log /home/www/log/access.log;
        error_log /home/www/log/error.log;

        location / {

                    root   /home/www/public/;
                    index  index.html index.php;
                    }

        location    /pics {
                    autoindex on;
                     }
              }

我已经检查过 nginx -v,并且已经使用 autoindex 模块构建。只是这里没有头绪。

答案1

location / 中设置的根目录不适用于 location /pics,因此如果您检查错误日志,您会看到 nginx 正在默认根目录中查找对 /pics 的请求。只需删除 location / 并在服务器上下文中设置 root 和 index 指令:

server {
  root /home/www/public;
  index index.html index.php;

  location /pics {
    autoindex on;
  }
}

相关内容