原因
VMware中安装centos7,安装配置完成nginx后,主机无法访问。虚拟机没有放行Nginx默认端口80。
解决办法
首先:开启 web 端口
firewall-cmd --permanent --add-port=80/tcp
重启 firewall
firewall-cmd --reload
目录
2022-12-07 08:52:14
VMware中安装centos7,安装配置完成nginx后,主机无法访问。虚拟机没有放行Nginx默认端口80。
首先:开启 web 端口
firewall-cmd --permanent --add-port=80/tcp
重启 firewall
firewall-cmd --reload
目录