Github Push Error: RPC failed; result=22, HTTP code = 413

前端 未结 17 904
迷失自我
迷失自我 2020-11-28 02:27

stupid issue with Github going on right now. I have a decent amount of changes (~120MB in size), when I attempt to push, this is what happens:

error: RPC fai         


        
17条回答
  •  鱼传尺愫
    2020-11-28 02:45

    If you get error 413, then the issue doesn't lie with git but with your web server. It's your web server that is blocking big upload files.

    Solution for nginx

    Just load your nginx.conf and add client_max_body_size 50m; ( changing the value to your needs ) in the http block.

    Reload nginx to accept the new config by executing sudo service nginx reload and try again to push your commit over http.

    Solution for Apache

    In your httpd.conf add LimitRequestBody 52428800 ( changing the value to your needs ) inside a block. Doing this you can limit the request of the whole server filesystem, just a single Virtual Host or a directory.

    I hope this helps.

提交回复
热议问题