标题
如何丝滑打开 centos7 端口外网访问
你的目的
在服务器配置nginx,并成功启动。
服务器是:阿里云的centos7.8
你的想法和思路
# 先安装nginx
yum install nginx
# 启动nginx
systemctl start nginx
# 查看状态
systemctl status nginx
# Active: active (running) since Wed 2022-02-16 12:59:37 CST; 39min ago
# 在打开80端口,开启http服务
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --reload
查看端口开启情况
描述你的问题
阿里云服务器 需要配置 安全组,如何在服务器配置防火墙规则才能开放端口
https://www.iwyv.com/jtjc/Linux/108352.html