Nginx如何做端口轉(zhuǎn)發(fā)?相信大部分人都還沒學(xué)會這個技能,為了讓大家學(xué)會,給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。
10年積累的成都網(wǎng)站設(shè)計、成都做網(wǎng)站經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有海安免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
server{
listen 80;
server_name tomcat.shaochenfeng.com;
index index.php index.html index.htm;
location / {
proxy_pass http://127.0.0.1:8080; # 轉(zhuǎn)發(fā)規(guī)則
proxy_set_header Host $proxy_host; # 修改轉(zhuǎn)發(fā)請求頭,讓8080端口的應(yīng)用可以受到真實的請求
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
這樣訪問 http://tomcat.shaochenfeng.com 時就會轉(zhuǎn)發(fā)到本地的 8080 端口
server{
listen 80;
server_name baidu.shaochenfeng.com;
index index.php index.html index.htm;
location / {
proxy_pass http://www.baidu.com;
proxy_set_header Host $proxy_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
這樣訪問 http://baidu.shaochenfeng.com 時就會轉(zhuǎn)發(fā)到 http://www.baidu.com
server{
listen 80;
server_name 127.0.0.1; # 公網(wǎng)ip
index index.php index.html index.htm;
location / {
proxy_pass http://127.0.0.1:8080; # 或 http://www.baidu.com
proxy_set_header Host $proxy_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
這樣訪問 http://127.0.0.1 時就會轉(zhuǎn)發(fā)到本地的 8080 端口或 http://www.baidu.com
在配置proxy_pass代理轉(zhuǎn)發(fā)時,如果后面的url加/,表示絕對根路徑;如果沒有/,表示相對路徑
例如
加 /
server_name shaochenfeng.com
location /data/ {
proxy_pass http://127.0.0.1/;
}
訪問 http://shaochenfeng.com/data/index.html 會轉(zhuǎn)發(fā)到 http://127.0.0.1/index.html
server_name shaochenfeng.com
location /data/ {
proxy_pass http://127.0.0.1;
}
關(guān)于用Nginx做端口轉(zhuǎn)發(fā)的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。