nginx 設定反代問題
ringa_lee
ringa_lee 2017-05-16 17:22:19
0
1
604

可以用單純的nginx語法 設定不同目錄的 代理麼?
例如

server
{
	listen 80;
	server_name xxx.com;
	location /baidu {
		proxy_redirect off;
		proxy_set_header Accept-Encoding "";
		proxy_set_header Host "baidu.com";
		proxy_set_header X-Real-IP $remote_addr;
		proxy_pass http://baidu.com;
}

訪問xxx.com/baidu 會代理為 baidu.com

可以用set實現 訪問 xxx.com/abc 代理為 abc.com 根據目錄的不同自動代理不同的網站麼?
該怎麼實現呢?

ringa_lee
ringa_lee

ringa_lee

全部回覆(1)
刘奇

可否敘述詳細點。 。 。不太明白你的需求是什麼 。 。如果你想要根據目錄不同代理不同的網站 。 。 。這用nginx代理不太好吧 。 。 。你可以在你的程式裡面寫路由呀​​。 。 。 。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板