记一次nginx转发请求出现upstream sent invalid chunked response while reading upstream

  1. 查阅博文说是http请求用的http1.1的协议,但nginx默认用的http1.0,1.0不支持分块传输长连接
    修改方案:location模块里面加上proxy_http_version 1.1;
  2. 但是我在生成环境尝试修改了,但是还是不起作用,后面发现http请求中默认加了个application/x-www-form-urlencoded请求头,去掉之后就不报错了。

第一点参考博客:https://blog.csdn.net/sc9018181134/article/details/82055225

你可能感兴趣的:(工作发现)