centos7 nginx 网站403无法访问-is forbidden (13: Permission denied)

小编今天在centos7环境搭建lnmp,安装nginx的时候,外网正常访问,安装完MySQL和PHP后,修改完配置文件,一切正常,添加了个PHP文件后,尝试访问结果html和PHP文件均无法访问,查看错误日志后发现
“/var/nginx/html/index.html” is forbidden (13: Permission denied), client: 192.168.101.18, server: localhost, request: “GET / HTTP/1.1”, host: “192.168.101.6”
经过查找资料整理出一下三个方法:

1.nginx配置文件没设置正确,路径不是生产环境,没有index文件
server {
listen 80;
server_name 0.0.0.0;
index index.php index.html;
root /var/www;
}

2.SELinux在启用状态
查看
/usr/sbin/sestatus
SELinux status是不是enabled
然后

vi /etc/selinux/config
修改:SELINUX=disabled
reboot

3.防火墙阻止访问
centos7默认使用firewalld作为防火墙。
centos7用的firewalld,我说iptables怎么没开。。
firewalld默认已经安装并启用了,如果需要nginx可以访问需要执行以下命令:
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --zone=trusted --add-port=80/tcp

或者关闭防火墙服务:

systemctl stop firewalld

作者:@(T_T)
欢迎关注,有问题一起学习,本文章如有错误,欢迎评论提出!
以上就是centos7 nginx 网站403无法访问-is forbidden (13: Permission denied)的详细内容!

你可能感兴趣的:(linux)