gitlab-ce安装迁移部署
gitlab-ce安装迁移部署 一、gitlab-ce安装 在迁移的目标服务器上安装gitlab-ce 1.1 添加 gitlab-ce 仓库 1tee /etc/yum.repos.d/gitlab-ce.repo <<EOF 2[gitlab-ce] 3name=gitlab-ce 4baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7 5repo_gpgcheck=0 6gpgcheck=0 7enabled=1 8gpgkey=https://packages.gitlab.com/gpg.key 9EOF 1.2 安装 gitlab-ce 1yum -y install gitlab-ce 1.3 配置 gitlab-ce 修改访问域名,修改external_url字段 1vim /etc/gitlab/gitlab.rb 2external_url 'https://git.hzde.com' 由于我们的生产环境中统一用的nginx进行管理,使用外部nginx,不……