【发布时间】:2017-11-11 15:08:02
【问题描述】:
我在云环境中的 CentOS 7.4 中安装了 GITLAB,我启用了 http、hhtps、ssh 端口 当我打开系统时,我得到的是“Apache HTTP 服务器”欢迎页面而不是 GIT LAB 页面,如何解决这个问题?
【问题讨论】:
标签: gitlab
我在云环境中的 CentOS 7.4 中安装了 GITLAB,我启用了 http、hhtps、ssh 端口 当我打开系统时,我得到的是“Apache HTTP 服务器”欢迎页面而不是 GIT LAB 页面,如何解决这个问题?
【问题讨论】:
标签: gitlab
你的环境可能已经安装了 httpd,GitLab 默认使用 nginx。
你可以停止和禁用httpd,然后重启GitLab
$ sudo systemctl status httpd
$ sudo systemctl stop httpd
$ sudo systemctl disable httpd
$ sudo gitlab-ctl restart
【讨论】: