Nginx是一個高效能的Web服務軟體。相比Apache HTTP Server更加的輕量級和靈活,是在WEB及服務端開發中必不可少的工具。
本文我們將介紹CentOS 7下Nginx的安裝。
- 新增倉庫
sudo yum install epel-release
複製程式碼
- 安裝Nginx
sudo yum install nginx
複製程式碼
- 啟動Nginx
sudo systemctl start nginx
複製程式碼
- 如果系統使用了防火牆(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
複製程式碼