首頁 > 軟體

Nginx反向代理location和proxy_pass設定規則詳細總結

2022-09-14 22:15:21

一、location設定規則

1.匹配模式及順序舉例

location = /uri = 開頭表示精確匹配,只有完全匹配上才能生效
location ^~ /uri ^~ 開頭對 URL 路徑進行字首匹配,並且在正則之前
location ~ pattern~ 開頭表示區分大小寫的正則匹配
location /uri不帶任何修飾符,也表示字首匹配,但是在正則匹配之後,如果沒有正則命中,命中最長的規則
location /通用匹配,任何未匹配到其它 location 的請求都會匹配到,相當於 switch 中的 default

2.location 是否以“/”結尾

在 ngnix 中 location 進行的是模糊匹配

  • 沒有“/”結尾時,location /abc/def 可以匹配 /abc/defghi 請求,也可以匹配 /abc/def/ghi 等
  • 而有“/”結尾時,location /abc/def/ 不能匹配 /abc/defghi 請求,只能匹配 /abc/def/anything 這樣的請求

二、proxy_pass設定規則

(1)設定 proxy_pass 時,當在後面的 url 加上了 /,相當於是絕對路徑,則 Nginx 不會把 location 中匹配的路徑部分加入代理 uri。

(2)如果設定 proxy_pass 時,後面沒有 /,Nginx 則會把匹配的路徑部分加入代理 uri。

例如:

server {
        listen       8081;
        server_name  localhost;
 
        location / {
            root   html;
            index  index.html index.htm;
        }
#情景1:proxy_pass後有/ ,表絕對路徑,不把匹配部分加入最終代理路徑(location 和proxy_pass結尾一致)
        #存取地址:http://localhost:8081/WCP.Service/wcp/modeladapter/download/asc.shtml
        #最終代理:http://10.194.171.7:13082/modeladapter/download/asc.shtml
		location /WCP.Service/wcp/modeladapter/download/ {
            proxy_pass   http://10.194.171.7:13082/modeladapter/download/;
        }
        #存取地址:http://localhost:8081/model/asc.shtml
        #最終代理:http://127.0.0.1:8082/model/asc.shtml
		location /model/ {
            proxy_pass   http://127.0.0.1:8082/model/;
        }
#情景2:proxy_pass後有/ ,表絕對路徑,不把匹配部分加入最終代理路徑(location 和proxy_pass結尾不一致)
        #存取地址:http://localhost:8081/model/asc.shtml
        #最終代理:http://127.0.0.1:8082/asc.shtml
		location /model/ {
            proxy_pass   http://127.0.0.1:8082/;
        }
#情景3:proxy_pass後沒有 / ,Nginx會把匹配部分帶到代理的url
        #存取地址:http://localhost:8081/model/asc.shtml
        #最終代理:http://127.0.0.1:8082/model/asc.shtml
		location /model/ {
            proxy_pass   http://127.0.0.1:8082;
        }
 
#情景4
        #存取地址:http://localhost:8081/model/asc.shtml
        #最終代理:http://127.0.0.1:8082/AAAmodel/asc.shtml
		location /model/ {
            proxy_pass   http://127.0.0.1:8082/AAA;
        }
#情景5
        #存取地址:http://localhost:8081/model/asc.shtml
        #最終代理:http://127.0.0.1:8082/asc.shtml
		location /model {
            proxy_pass   http://127.0.0.1:8082/;
        }
#情景6
        #存取地址:http://localhost:8081/modelBBB/asc.shtml
        #最終代理:http://127.0.0.1:8082/asc.shtml
		location /model {
            proxy_pass   http://127.0.0.1:8082/;
        }
 
 
		location /opus-front-sso {
            proxy_pass   http://10.194.170.94/opus-front-sso;
        }
		location /awater {
            proxy_pass   http://10.194.170.94/awater;
        }
    }

補充:Nginx設定proxy_pass轉發的/路徑問題

在nginx中設定proxy_pass時,如果是按照^~匹配路徑時,要注意proxy_pass後的url最後的/,當加上了/,相當於是絕對根路徑,則nginx不會把location中匹配的路徑部分代理走;如果沒有/,則會把匹配的路徑部分也給代理走。

location ^~ /static_js/
{
proxy_cache js_cache;
proxy_set_header Host js.test.com;
proxy_pass http://js.test.com/;
}

如上面的設定,如果請求的url是http://servername/static_js/test.html

會被代理成http://js.test.com/test.html

而如果這麼設定

location ^~ /static_js/
{
proxy_cache js_cache;
proxy_set_header Host js.test.com;
proxy_pass http://js.test.com;
}

則會被代理到http://js.test.com/static_js/test.htm

總結

到此這篇關於Nginx反向代理location和proxy_pass設定規則的文章就介紹到這了,更多相關Nginx location和proxy_pass設定規則內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com