代码之家  ›  专栏  ›  技术社区  ›  Raheel

/var/www/html目录索引禁止

  •  0
  • Raheel  · 技术社区  · 4 年前

    我正在使用以下文件复制在 /etc/nginx/conf.d/default.conf

    server {
        listen 80;
        root /var/www/html/public;
        index index.php index.htm index.html;
    
        location / {
            try_files $uri /index.php$is_args$args;
        }
    
        location ~ ^/index\.php(/|$) {
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
            fastcgi_param DOCUMENT_ROOT $realpath_root;
    
            fastcgi_index index.php;
            fastcgi_pass 127.0.0.1:9000;
        }
    
        location ~ \.php$ {
            return 404;
        }
    }
    

    它在日志中给了我以下错误

    * 7目录索引“/var/www/html/”被禁止,客户端:172.17.0.1,服务器:\请求:“GET/HTTP/1.1”,主机:本地主机:8080"

    我的文件在 www-data:www-data

    enter image description here

    我使用的是来自php:7.4-fpm如果这是相关的。

    FROM php:7.4-fpm
    
    WORKDIR /var/www/html
    
    RUN export DEBIAN_FRONTEND=noninteractive
    
    RUN apt-get update && apt-get install -y nginx procps
    
    COPY infrastructure/nginx/default.conf /etc/nginx/conf.d/default.conf
    
    COPY infrastructure/entrypoint.sh /etc/entrypoint.sh
    
    EXPOSE 80
    
    ENTRYPOINT ["sh", "/etc/entrypoint.sh"]
    

    谢谢你的帮助。

    0 回复  |  直到 4 年前
        1
  •  1
  •   symcbean    4 年前

    它说“目录索引…被禁止”不是说没有权限。如果要提供其中一个文件的URL,例如。 http://example.com/composer.json ,nginx应该很高兴地将内容返回到浏览器。如果您明确地想要浏览目录中的文件,那么 must be explicitly enabled in the nginx config