我正在使用以下文件复制在
/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
我使用的是来自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"]
谢谢你的帮助。