Nginx教程

nginx 报错:Nginx 403 error:directory index of “xxx“ is forbidden

本文主要是介绍nginx 报错:Nginx 403 error:directory index of “xxx“ is forbidden,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在部署好Nginx服务器后,输入IP地址和端口号,返回403 Forbiddent

查看日志error.log,发现报错信息为:

 

 

directory index of "xxx" is forbidden

其中,xxx是在/etc/nginx/nginx.conf中指定的root目录。

报错根因:直接使用IP地址和端口号访问时,需要指定index,如果未指定,出现该报错。

这时候,可以在nginx/nginx.conf中添加配置:
autoindex on; # 自动索引

 

 

这样再次访问的时候,就会列出所有的资源索引。

 

 【注意】修改nginx.conf后,记得重启服务才能生效。

 

这篇关于nginx 报错:Nginx 403 error:directory index of “xxx“ is forbidden的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!