Gitlab安裝後,使用http方式推送時,報「RPC failed; result=22, HTTP code = 413」html
經過百度和谷歌,發現是由於nginx默認狀況下,容許最大的上傳文件大小隻有1M,所以使用下面的方法可解決上述問題:nginx
編輯配置文件git
sudo vim /etc/nginx/sites-available/gitlab
找到location / {shell
在花括號中添加client_max_body_size 1000m; 以下所示vim
location / { # serve static files from defined root folder;. # @gitlab is a named location for the upstream fallback, see below try_files $uri $uri/index.html $uri.html @gitlab; client_max_body_size 1000m; }