服务器安装了nginx 不能通过80端口访问解决

1.可能是防火墙影响,开启80端口或者将防火墙关掉即可

1:查看防火状态
systemctl status firewalld
service  iptables status
2:暂时关闭防火墙
systemctl stop firewalld
service  iptables stop
3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off
4:重启防火墙
systemctl enable firewalld
service iptables restart  
5:永久关闭后重启
//暂时还没有试过
chkconfig iptables on

2.当确保nginx已经正常运行的情况下依旧不能访问,则需要查看一下你服务器的安全组策略是否有启用80端口
在这里插入图片描述这里表示已经开启,未开启可以自行添加安全组规则
3.再次输入外网ip访问即可
服务器安装了nginx 不能通过80端口访问解决_第1张图片

你可能感兴趣的:(linux,nginx,php)