禁用捆绑的Nginx
vim /etc/gitlab/gitlab.rb
将 nginx['enable'] = true 修改为 nginx['enable'] = false 并去掉注释 (前边的#)
允许gitlab-workhorse监听TCP(默认端口设置为8021),编辑/etc/gitlab/gitlab.rb:
gitlab_workhorse['listen_network'] = "tcp" gitlab_workhorse['listen_addr'] = "127.0.0.1:8021" //这个端口号一会和Nginx代理的端口号要一致
运行 sudo gitlab-ctl reconfigure
使更改生效。
$ vim /usr/local/nginx/conf/vhost/gitlab.conf # 为原Nginx新建一个gitlab的配置文件 server { listen 8022; #我的gitlab一般使用8022端口访问 server_name localhost; location / { root html; index index.html index.htm; proxy_pass http://127.0.0.1:8021; #这里与前面设置过的端口一致 } }