腾讯云 Centos 安装nginx

  • 添加CentOS 7 EPEL 仓库
sudo yum instal lepel-release
  • 安装Nginx
sudo yum install nginx
  • 启动Nginx
sudo systemctl start nginx
  • 启动防火墙
sudo systemctl start firewalld.service
  • 允许HTTP和HTTPS传输
sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https

sudo firewall-cmd --reload

在浏览器中输入服务器ip地址,看到类似 Welcome to nginx 字样,则表示安装成功

你可能感兴趣的:(Web,centos,nginx)