溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Nginx如何做端口轉(zhuǎn)發(fā)?

發(fā)布時(shí)間:2020-05-28 09:26:33 來源:億速云 閱讀:1410 作者:Leah 欄目:系統(tǒng)運(yùn)維

Nginx如何做端口轉(zhuǎn)發(fā)?相信大部分人都還沒學(xué)會(huì)這個(gè)技能,為了讓大家學(xué)會(huì),給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。

首先介紹最常用的,將域名轉(zhuǎn)發(fā)到本地另一個(gè)端口上

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ā)請(qǐng)求頭,讓8080端口的應(yīng)用可以受到真實(shí)的請(qǐng)求
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}

這樣訪問 http://tomcat.shaochenfeng.com 時(shí)就會(huì)轉(zhuǎn)發(fā)到本地的 8080 端口

將域名轉(zhuǎn)發(fā)到另一個(gè)域名

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 時(shí)就會(huì)轉(zhuǎn)發(fā)到 http://www.baidu.com

本地一個(gè)端口轉(zhuǎn)發(fā)到另一個(gè)端口或另一個(gè)域名

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 時(shí)就會(huì)轉(zhuǎn)發(fā)到本地的 8080 端口或 http://www.baidu.com

加 / 與不加 /

在配置proxy_pass代理轉(zhuǎn)發(fā)時(shí),如果后面的url加/,表示絕對(duì)根路徑;如果沒有/,表示相對(duì)路徑

例如

  1. 加 /

    server_name shaochenfeng.com
    location /data/ {
    proxy_pass http://127.0.0.1/;
    }

    訪問 http://shaochenfeng.com/data/index.html 會(huì)轉(zhuǎn)發(fā)到 http://127.0.0.1/index.html

  2. 不加 /
    server_name shaochenfeng.com
    location /data/ {
    proxy_pass http://127.0.0.1;
    }

    關(guān)于用Nginx做端口轉(zhuǎn)發(fā)的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI