I'm running GitLab 6.0.0 through Nginx and can fork small repositories, but when I try to fork a large repository (2GB) I see a "502 Bad Gateway" page after about one minute.
/var/log/nginx/gitlab_error.log
shows:
2013/08/29 12:21:33 [error] 25098#0: *221 upstream prematurely closed connection while reading response header from upstream,
client: 12.34.56.78,
server: myserver,
request: "POST /mygroup/myproject/fork HTTP/1.1",
upstream: "http://unix:/home/git/gitlab/tmp/sockets/gitlab.socket:/mygroup/myproject/fork",
host: "myserver",
referrer: "http://myserver/mygroup/myproject/fork"
Issue 1527 suggests a memory issue (and that memory requirement in mentioned in the doc).
It can also be because of an initial timeout:
You can modify unicorn config file
/home/git/gitlab/config/unicorn.rb
:In your NGiNX config, you can also add:
If you have a
/etc/nginx/fastcgi_params
file with your NGiNX, you can add:Note that after a 502, and after making the fixes mentioned above, it is a good idea to clear the browser cache before trying again to access gitlab.