CentOS 7 - 安裝Nginx

羅伊德發表於2018-12-06

Nginx是一個高效能的Web服務軟體。相比Apache HTTP Server更加的輕量級和靈活,是在WEB及服務端開發中必不可少的工具。

本文我們將介紹CentOS 7下Nginx的安裝。

  1. 新增倉庫
sudo yum install epel-release
複製程式碼
  1. 安裝Nginx
sudo yum install nginx
複製程式碼
  1. 啟動Nginx
sudo systemctl start nginx
複製程式碼
  1. 如果系統使用了防火牆(firewall),執行下面命令允許http/https
sudo firewall-cmd --permanent --zone=public --add-service=http 
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload
複製程式碼

相關文章