- 禁用gitlab内部的Nginx
vim /etc/gitlab/gitlab.rb
将nginx['enable'] = true
修改为nginx['enable'] = false
,并去掉注释 (前边的#)
2.允许gitlab-workhorse监听TCP(默认端口设置为8021),编辑/etc/gitlab/gitlab.rb
:
gitlab_workhorse['listen_network'] = "tcp"
gitlab_workhorse['listen_addr'] = "127.0.0.1:8021"
3.运行gitlab-ctl reconfigure
使更改生效。
4.通过系统原本安装的Nginx反代以便提供访问
vim /etc/nginx/config.d/gitlab.conf
- 为原Nginx新建一个gitlab的配置文件
server {
listen 80;
client_max_body_size 0; #一定要加上这个参数,gitlab push大小限制,0表示没有大小限制
server_name xxxxxxx.com;
server_tokens off;
location / {
root html;
index index.html index.htm;
proxy_pass http://127.0.0.1:8021; #这里与前面设置过的端口一致
proxy_read_timeout 3600;
proxy_connect_timeout 300;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto http;
}
}
6.systemctl restart nginx
重启
注意:如果nginx配置中不加
client_max_body_size 0; #一定要加上这个参数,gitlab push大小限制,0表示没有大小限制
可能会出现git push
失败