nginx做反向代理,下载大文件时出现err_connection_reset错误

查看error.log 显示的是Upstream prematurely closed connection while reading upstream...错误

在nginc.conf文件中http段添加如下两行配置:

proxy_request_buffering off;
proxy_buffering off;

你可能感兴趣的:(nginx做反向代理,下载大文件时出现err_connection_reset错误)