gpt4 book ai didi

nginx - 避免nginx在proxy_pass上解码查询参数(相当于AllowEncodedSlashes NoDecode)

转载 作者:行者123 更新时间:2023-12-02 14:30:53 25 4
gpt4 key购买 nike

我在几个 tomcat 前面使用 nginx 作为负载均衡器。在传入的请求中,我对查询参数进行了编码。但是当请求到达 tomcat 时,参数被解码:

传入 nginx 的请求:

curl -i "http://server/1.1/json/T;cID=1234;pID=1200;rF=http%3A%2F%2Fwww.google.com%2F"

对 tomcat 的传入请求:

curl -i "http://server/1.1/json/T;cID=1234;pID=1200;rF=http:/www.google.com/"

我不希望我的请求参数被转换,因为在这种情况下我的 tomcat 会抛出 405 错误。

我的 nginx 配置如下:

upstream tracking  {
server front-01.server.com:8080;
server front-02.server.com:8080;
server front-03.server.com:8080;
server front-04.server.com:8080;
}

server {
listen 80;
server_name tracking.server.com;
access_log /var/log/nginx/tracking-access.log;
error_log /var/log/nginx/tracking-error.log;

location / {
proxy_pass http://tracking/webapp;
}
}

在我当前的 apache 负载均衡器配置中,我有 AllowEncodedSlashes保留我的编码参数的指令:

AllowEncodedSlashes NoDecode

我需要从 apache 迁移到 nginx。

我的问题与这个问题完全相反:Avoid nginx escaping query parameters on proxy_pass

最佳答案

我终于找到了解决方案:我需要通过 $request_uri parameter :

location / {
proxy_pass http://tracking/webapp$request_uri;
}

这样,原始请求中编码的字符将不会被解码,即将按原样传递到代理服务器。

关于nginx - 避免nginx在proxy_pass上解码查询参数(相当于AllowEncodedSlashes NoDecode),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20496963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com