GitLab 安装配置完整过程
搭建了一个gitlab ,记录一下过程,以便后续使用!!(有些内容来源于网络)
1、环境centos 7 本次采用yum 安装
2、第一步陪置yum 源
vim /etc/yum.repos.d/gitlab-ce.repo
增加如下内容:
[gitlab-ce]
name=Gitlab CE Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/
gpgcheck=0
enabled=1
更新本地yum缓存:
yum makache
3、安装GitLab社区版
yum install gitlab-ce
4、更改默认端口配置也可不改(默认为80端口)
vim /etc/gitlab/gitlab.rb
修改如下:
external_url ‘http://ip:8888’
nginx[‘listen_https’] = false
nginx[‘listen_port’] = 8888
nignx[‘listen_address’] = [’*’]
vim /var/opt/gitlab/nginx/conf/gitlab-http.conf
修改如下:
server {
listen *:8888;
server_name ip
if ($http_