Olek Blog
Home
# CentOS7 安装 Nginx ## 安装命令 ``` sudo yum install epel-release sudo yum install nginx sudo systemctl start nginx ``` ## 设置开机启动 ``` sudo systemctl enable nginx ``` ## 开放端口 ``` sudo firewall-cmd --permanent --zone=public --add-service=http sudo firewall-cmd --permanent --zone=public --add-service=https sudo firewall-cmd --reload ```