八个月前我已经安装了gitlab,到目前为止一切都很好。
最近我更改了我们代理网站的域名(从agency.com到newagancy.com),所以我想更改gitlab域名。 (从gitlab.agency.com到gitlab.newagency.com)
我在两个配置文件中做了一些更改:
但是我仍然没有让我的gitlab在ssh和http克隆网址中使用新的域名,即使命令:
sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
显示了这一点:
GitLab information
Version: 6.7.2
Revision: dbbf4ea
Directory: /home/git/gitlab
DB Adapter: mysql2
URL: http://gitlab.newagency.com
HTTP Clone URL: http://gitlab.newagency.com/some-project.git
SSH Clone URL: git@gitlab.newagency.com:some-project.git
Using LDAP: no
Using Omniauth: no
当然我错过了一些东西,但我无法弄清楚,
你有什么想法吗?
谢谢
答案 0 :(得分:0)
检查您是否按照https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md#6-nginx的所有步骤进行操作,您可能需要:
将YOUR_SERVER_FQDN更改为为GitLab提供服务的主机的完全限定域名。
sudo vim /etc/nginx/sites-available/gitlab
sudo service nginx restart
我找到了解决https://about.gitlab.com/getting-help/上许多问题的解决方案,以便解决将来的问题。