如何将gitlab的默认端口80更改为自定义端口号?
我尝试过两种方法:
在 /etc/gitlab/gitlab.rb 中设置端口
external_port "8888"
然后运行重新配置:
gitlab-ctl reconfigure
在 /var/opt/gitlab/gitlab-rails/etc/gitlab.yml 中设置端口
production: &base
#
# 1. GitLab app settings
# ==========================
## GitLab settings
gitlab:
## Web server settings (note: host is the FQDN, do not include http://)
host: gitlab.blitting.com
port: 8888
https: false
然后重启gitlab
gitlab-ctl stop
gitlab-ctl start
有了这两个,gitlab 继续在默认的 80 端口号上运行。