PHP设置禁止目录索引,/var/www/html目录索引禁止

我正在使用以下文件复制在

/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

Rs6cs.png

我使用的是来自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
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值