nginx做代理IP埠轉發的安裝和部署配置

軍說網事發表於2015-09-30

一、下載和安裝

 

1 下載

cd /usr/local/

wget http://nginx.org/download/nginx-1.2.8.tar.gz

 

2 安裝

tar -zxvf nginx-1.2.8.tar.gz

cd nginx-1.2.8  

./configure --prefix=/usr/local/nginx 

make

make install

 

二、啟動和重啟

 

1 /usr/local/nginx/sbin/nginx

2 檢查是否啟動成功:

netstat -ano|grep 80 有結果輸入說明啟動成功

 

3 開啟瀏覽器訪問此機器的 IP,如果瀏覽器出現 Welcome to nginx! 則表示 Nginx 已經安裝並執行成功。

如果不能訪問,檢查防火牆的配置。

路徑:/etc/firewalld/zones/public.xml裡有沒有<service name="http"/>。

如果沒有,加上,重啟service firewalld restart。

 

4 重啟

/usr/local/nginx/sbin/nginx-s reload

 

三、代理配置

 

1

       location /hamaster/ {

           proxy_pass http://192.168.1.12:8099/stats;

       }

 

      location /haslave/ {

           proxy_pass http://192.168.1.2:8099/stats;

       }

 

 

相關文章