1. 程式人生 > >Linux Centos install nginx

Linux Centos install nginx

安裝Nginx

安裝 epel

sudo yum install epel-release

安裝 Nginx

sudo yum install nginx

啟動 Nginx

Nginx 不會自己啟動,啟動命令:

sudo systemctl start nginx

關閉防火牆

  如果外部瀏覽器輸入該機IP還是訪問不了,說明有防火牆正在執行,關閉HTTP 和 HTTPS的防火牆:

sudo firewall-cmd --permanent --zone=public  --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

訪問驗證

外部瀏覽器訪問成功,說明Nginx安裝成功。