git push报错:error: RPC failed; result=22, HTTP code = 413

时间:2022-08-16 09:24:34

  新项目推送到服务器时报错:

error: RPC failed; result=22, HTTP code = 413| 7.66 MiB/s    
fatal: The remote end hung up unexpectedly
  查了下,属于项目中有大文件,而http推送限制造成的,需要修改服务器配置。因为git服务器是通过nginx做反向代理之后实现的,因此需要修改nginx和appache(git服务器):

1、nginx服务器配置:/etc/nginx/conf.d/default.conf中的server小节加入:client_max_body_size 100m;

2、apache配置:/etc/httpd/conf.d/git.conf中对应Location小节中加入:LimitRequestBody 52428800