我尝试在OS-X Server 10.8.5上安装Gitlab 5.2。我按照以下程序文件: “http://thoughtpointers.net/2013/05/23/installing-gitlab-v52-on-os-x/”。
在标题为“配置GitLab”的文档部分中,他们要求编辑文件“gitlab.yml”并将“gitlab.example.com”改为主机服务Gitlab的“完全限定域名”。
我不明白我需要改变什么..
1。我是否需要将“host:gitlab.example.com”更改为“localhost”?或者“server.local =>键入”hostname“时得到的内容)?
2.什么是“gitlab.example.com”?在我的电脑上下载和安装的东西(所以在哪里?)?什么取代它?
我想当我在浏览器上输入地址时:
"http://fully qualified domain name"
答案 0 :(得分:8)
默认情况下,您在config/gitlab.yml
中看到的是:
## GitLab settings
gitlab:
## Web server settings
host: localhost
port: 80
https: false
这允许您在本地测试Gitlab。
如果替换:
host: localhost
使用:
host: ip.address (192.168.x.x)
#
host: fqn (your fully qualified name)
然后,您将能够从另一台计算机上测试/访问GitLab。
所以gitlab.example.com
是这样一个完全限定名称的例子,应该由你自己改变。
作为explained here,请检查 host hostname
返回的内容。