我按照gitlab网站上的说明here安装了GitLab。我安装了ruby版本2.1.2和mysql。还有一堆其他程序。我将外部网址设置为git.mywebsite.com,但是当我转到网址时,没有任何内容。我试过卸载它并重新安装很多次。我错过了一个关键部分来完成这项工作吗?我怎样才能让gitlab工作?
答案 0 :(得分:1)
更新config / gitlab.yml生产配置:
production: &base
#
# 1. GitLab app settings
# ==========================
## GitLab settings
gitlab:
## Web server settings (note: host is the FQDN, do not include http://)
host: domain.tld
port: 8888
https: false
然后重启gitlab。
当我正在运行其他Web服务时,我正在使用Nginx来代理我的GitLab实例。我的安装遵循Ubuntu manual install instructions available from GitHub。
您的安装可能包含以下位置的Ruby配置:/etc/gitlab/gitlab.rb
编辑gitlab.rb配置后,执行以下命令重新配置:
sudo gitlab-ctl reconfigure
然后重启GitLab:
sudo gitlab-ctl stop
sudo gitlab-ctl start