After NGINX large load js file loading was incomplete, reported 206 (Partial Content) error

As stated, the solution:

### 在nginx配置中 添加以下配置
proxy_buffer_size 128k;
proxy_buffers   32 128k;
proxy_busy_buffers_size 128k;

### 重载一下
sbin/nginx -s reload
File megabytes will not be timed out.

Guess you like

Origin www.cnblogs.com/zhjh256/p/12146471.html