Omnibus GitLab 参数配置
GitLab 和 GitLab CI 的相关参数配置都存在
/etc/gitlab/gitlab.rb
文件里。查看所有可用的参数 gitlab.rb.template. 自GitLab 7.6开始的新安装包, 已经默认将所有的参数写入到/etc/gitlab/gitlab.rb
文件中.
配置域名 Configuring the external URL for GitLab
为使用户可以正确的获取到GitLab上显示的当前仓库的clone地址, GitLab需要你设置好哪个url才是用户可以访问到GitLab, 比如 http://gitlab.example.com
。你需要编辑下面这个文件/etc/gitlab/gitlab.rb
:
1 | external_url "http://gitlab.example.com" #替换为你自己的地址或者ip |
然后运行sudo gitlab-ctl reconfigure
是配置生效。