通过Nginx反向代理的网站,可能存在413错误。
如图:
Git操作日志:
1 2 3 4 5 |
> git push -u origin v1.4.1 error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 send-pack: unexpected disconnect while reading sideband packet fatal: the remote end hung up unexpectedly Everything up-to-date |
解决方案:
修改nginx配置文件,配置客户端请求大小和缓存大小。
1 |
sudo vim /etc/nginx/nginx.conf |
在http属性内添加:
1 2 3 |
client_max_body_size 50M; client_body_buffer_size 512k; fastcgi_intercept_errors on; |
之前其他网站给的是8M,128K,我这里改大一些。
【Nginx】反向代理导致的Http413问题