关于Nginx location中配置proxy_pass转发时斜线'/'导致的404问题
生活随笔
收集整理的這篇文章主要介紹了
关于Nginx location中配置proxy_pass转发时斜线'/'导致的404问题
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
在Nginx location通用匹配規則中配置proxy_pass轉發時,假設有如下location配置:
location /test {proxy_pass http://localhost:8080/test;proxy_redirect off;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header Host $host:$server_port;proxy_set_header X-Forwarded-Proto "https";proxy_set_header X-Forwarded-Host $host;proxy_set_header X-Forwarded-Server $host;proxy_set_header X-Real-IP $remote_addr;}如果我請求 http://localhost/test/a.jsp,則會將url根據匹配規則“/test”截取,然后將“/test”后面的內容(此處為“/a.jsp”)拼接到proxy_pass的后面,然后轉發,也就是最后實際請求地址為:proxy_pass http://localhost:8080/test/a.jsp。
所以,如果location的匹配規則最后不加斜線'/',則proxy_pass的最后也不要加斜線,或者都加上斜線,不然就不能正確訪問實際地址,導致404 not found錯誤。
?
注:正則匹配不適用,關于location的匹配規則,可以參考其他資料。
轉載于:https://my.oschina.net/nivalsoul/blog/804800
總結
以上是生活随笔為你收集整理的关于Nginx location中配置proxy_pass转发时斜线'/'导致的404问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Mac OS Sierra安装Imagi
- 下一篇: 本站源码免费下载-木庄网络博客