nginx转发导致丢失url参数解决

使用nginx反向代理容器flask接口的时候,发现问题

  • nginx中使用容器名+端口+uri,访问url传参,能够正常获取url中?之后的参数
location /test {
            include /etc/nginx/proxy.conf;
            proxy_pass http://pipeline:8888/test;
        }
  • nginx中使用ip+端口+uri,访问url传参,无法获取url中?之后的参数
location /test {
            include /etc/nginx/proxy.conf;
            proxy_pass http://11.11.11.1:8888/test;
        }

解决:ip+端口+uri+$args

location /test {
            include /etc/nginx/proxy.conf;
            proxy_pass http://11.11.11.1:8888/test$args;
        }

来源:

nginx-get请求参数丢失 - 掘金 (juejin.cn)

你可能感兴趣的:(nginx转发导致丢失url参数解决)