nginx autoindex接收403 Forbidden

前端之家收集整理的这篇文章主要介绍了nginx autoindex接收403 Forbidden前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在使用Nginx和autoindex时遇到了麻烦.

即使我把它放在网站主机上,它仍然在扔“403-Forbidden at my”

     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模块构建.
在这里变得无能为力.

最佳答案
位置/根目录中设置的根目录不适用于位置/图片,因此如果您检查错误日志,您会看到Nginx正在寻找/ pics请求的默认根目录.只需删除位置/并在服务器上下文中设置root和index指令:

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

  location /pics {
    autoindex on;
  }
}
原文链接:https://www.f2er.com/nginx/435709.html

猜你在找的Nginx相关文章