问题:
当我在 GitLab 中创建存储库时,由于某种原因,它显示了存储库的不同 HTTP URL 和 SSH URL。
例如)
HTTP:http://anotherexample.com/myrepo.git
SSH:git@gitlab.example.com/myrepo.git
我的 gitlab URL 是:https://gitlab.example.com,所以 SSH 正确,HTTP 错误。
(anotherexample.com是我设置 DNS 之前服务器的 URL。)
我查看了 /var/opt/gitlab/gitlab-rails/etc/gitlab.yml,然后发现:
# 1. GitLab app settings
# ==========================
host: anotherexample.com
port: 80
https: false
ssh_host: gitlab.example.com
然后我手动更改了这个主机,暂时解决了。
但是,gitlab.yml将在我执行gitlab-ctl reconfigure时更新。
问题:
如何在/etc/gitlab/gitlab.rb
中为 HTTP 设置此主机名?
我已经有以下两行:
external_url 'https://gitlab.example.com'
gitlab_rails['gitlab_ssh_host'] = 'gitlab.example.com'
但它似乎不适用于 HTTP url。
我的 GitLab 版本:8.8.3
我的服务器:CentOS 6.8 + nginx 1.10.1
提前致谢。