標籤:windows 伺服器 設定檔 區域網路 防火牆
關於方案:公司有一客戶,需要訪問我們的業務介面,但是他們的伺服器在內網裡面,不能訪問外網,但是區域網路裡面的其他伺服器能夠上網,所以想在區域網路裡面配置代理,能夠實現代理訪問。
(1)需要的軟體和以及基本的需求
nginx軟體 一台能夠上外網的主機。
nginx 軟體 http://nginx.org/en/download.html 可以在官網下載,下載後解壓,可以點擊setup安裝,但是這裡需要注意預設連接埠為80連接埠,防止主機的80連接埠被佔用。
(2)幾個常用的nginx命令
start nginx
nginx -s reload 重新載入設定檔
nginx -s stop 停止
nginx -s quit 停止
tasklist /fi "imagename eq nginx.exe" 可以查看其進程等資訊
注意:我們還可以到logs 目錄下查看日誌,查看access.log,error.log兩個檔案。就可以看到其相關的日誌資訊。 還需要注意防火牆問題,以免不能正常訪問。
(3)啟動nginx ,可以用start nginx命令,也可以用set up啟動,在瀏覽器裡面訪問,能出現頁面就是正常的。
650) this.width=650;" src="http://s2.51cto.com/wyfs02/M00/84/19/wKiom1eFtOWg1t69AACrixvIoxI483.png-wh_500x0-wm_3-wmp_4-s_2510636212.png" title="nginx.png" alt="wKiom1eFtOWg1t69AACrixvIoxI483.png-wh_50" />
(4)代理的配置
1、在#gzip on;處開啟該配置,並添加以下等配置,這樣為了代理過程中對檔案的處理。
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 4;
gzip_vary on;
gzip_types text/plain text/css text/xml application/x-javascript application/xml application/atom-xml text/javascript;
2、代理部分的配置
server {
listen 8011;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
location /SendMsg {
proxy_pass http://192.168.1.198:1210/Services/MsgSend.asmx/SendMsg;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /GetReport {
proxy_pass http://192.168.1.198:1210/Services/MsgSend.asmx/GetReport;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
這樣就可以了,由於我們更改了設定檔,需要重新啟動服務,主要就是為了載入設定檔。
重啟成功後就可以訪問測試了。
650) this.width=650;" src="http://s2.51cto.com/wyfs02/M00/84/19/wKioL1eFtwnzrk6kAAAwonulnYs715.png-wh_500x0-wm_3-wmp_4-s_2468331670.png" title="get.png" alt="wKioL1eFtwnzrk6kAAAwonulnYs715.png-wh_50" />
650) this.width=650;" src="http://s2.51cto.com/wyfs02/M00/84/1A/wKiom1eFtwnwrO0kAAA9Ky-6EUs045.png-wh_500x0-wm_3-wmp_4-s_3307967794.png" title="QQ圖片20160713113355.png" alt="wKiom1eFtwnwrO0kAAA9Ky-6EUs045.png-wh_50" />
這個就是我們的介面回傳的參數了,本文中將我們的地址做了更改,用了內網地址示範了一下。此方案只是我們的一個案例的筆記,僅供大家參考。
本文出自 “IT菜鳥” 部落格,請務必保留此出處http://9089323.blog.51cto.com/9079323/1825995
基於windows server2008的nginx 代理上網方案