1. 程式人生 > >Nginx安裝與代理

Nginx安裝與代理

直接 yum命令 防火 tool listen 配置 打開終端 spa targe

1、第一步 - 添加Nginx存儲庫

要添加CentOS 7 EPEL存儲庫,請打開終端並使用以下命令:

sudo yum install epel-release

2、第二步 - 安裝Nginx

現在您的服務器上已安裝Nginx存儲庫,請使用以下yum命令安裝Nginx :

sudo yum install nginx

在對提示回答“是”後,Nginx將在您的虛擬專用服務器(VPS)上完成安裝。

3、第三步 - 啟動Nginx

Nginx並不是自己開始的。要運行Nginx,請鍵入:

sudo systemctl start nginx

sudo systemctl enable nginx

4、如果您運行的是防火墻,請運行以下命令以允許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,出現nginx頁面則安裝成功

5、查看nginx運行狀態

sudo systemctl status nginx.service

6、找到配置文件

sudo vi /etc/nginx/nginx.conf

7、修改server

server {

    listen 80;

    location / {

  proxy_pass http://localhost:8082;

  proxy_http_version 1.1;

  proxy_set_header Upgrade $http_upgrade;

  proxy_set_header Connection keep-alive;

  proxy_set_header Host $http_host;

  proxy_cache_bypass $http_upgrade;

  }

}

將80轉發至8082端口:例如:發布訪問地址192.168.00.000:8082,轉發之後可直接訪問192.168.00.000

8、重啟nginx

sudo nginx -t

sudo nginx -s reload

9、設置開機啟動

重啟nginx服務

systemctl enable nginx.service

下載

wget https://www.itzgeek.com/msttcore-fonts-2.0-3.noarch.rpm

解壓

rpm -Uvh msttcore-fonts-2.0-3.noarch.rpm

設置

setsebool -P httpd_can_network_connect 1
yum install libgdiplus-devel

10、重啟虛擬機

安裝基礎工具

yum install net-tools  

安裝VIM

yum -y install vim

安裝 wget

yum -y install wget

希望對你有幫助,作者水平有限,如有疏漏或者錯誤,還望指出。

Nginx安裝與代理