错误信息 failed (104: Connection reset by peer) while reading response header from upstream

解决办法:

在Nginx配置文件的的http段,根据需要修改下面配置(宝塔面板在/www/server/nginx/conf/proxy.conf修改)

proxy_buffer_size  128k;  #代理服务器缓冲区大小,客户端的头信息会保存在这里
proxy_buffers   32 32k;  #代理服务器有几个缓冲区,最大是多大
proxy_busy_buffers_size 128k;  #代理服务器烦方式可以申请更大的缓冲区,Nginx官方推荐为*2即可

具体分析和方法请访问:https://www.cnblogs.com/tinywan/p/6777592.html

其他解决方法:

https://blog.csdn.net/LJFPHP/article/details/79892710

https://www.cnblogs.com/doseoer/p/5972002.html