Nginx容器报错:403 forbidden

参考:Nginx出现403 forbidden

二、缺少index.html或者index.php文件,就是配置文件中index index.html index.htm这行中的指定的文件。
server {
listen 80;
server_name localhost;
index index.php index.html;
root /data/www/;
}
如果在/data/www/下面没有index.php,index.html的时候,直接文件,会报403 forbidden。

你可能感兴趣的:(Nginx容器报错:403 forbidden)