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

y3bcpkx1  于 2024-01-06  发布在  Nginx
关注(0)|答案(1)|浏览(237)

我正在使用以下文件复制在/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”,主机:“localhost:8080”**

试着调试但没有线索。
我的文件在www-data:www-data
x1c 0d1x的数据
我正在使用一个来自php:7.4-fpm的docker镜像,如果它是相关的。

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"]


多谢帮忙

dced5bon

dced5bon1#

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

相关问题