nginx 如何获取/打印完整代理路径?

a33291 · 2025-3-21 09:24:28 · 208 次点击
以这个配置为例
location /test {
proxy_pass http://localhost/
}
当请求 /test/api?a=1 时 实际向上游发起的地址为 http://localhost/api?a=1
这由 nginx 的内置机制自动完成

现在,是否有 nginx 变量或者其他方案可以获取到这个 http://localhost/api?a=1 (目前是人工算的)

如果自己利用 $uri $request_uri 之类的拼接很麻烦
举报· 208 次点击
登录 注册 站外分享
1 条回复  
choice4 初学 2025-3-21 09:55:24
```conf location /test/ { proxy_pass http://localhost/; proxy_set_header Host $proxy_host; } ```
返回顶部