【GitLab私有仓库】在Linux上用Gitlab搭建自己的私有库并配置cpolar内网穿透
搭建GitLab私有仓库并使用cpolar配置内网穿透的步骤如下:
- 安装GitLab:
# 添加GitLab官方仓库
wget https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-14.3.0-ce.0.el7.x86_64.rpm/download.rpm
# 安装GitLab
sudo rpm -Uvh download.rpm
# 启动GitLab
sudo gitlab-ctl reconfigure
- 配置GitLab:
# 编辑GitLab配置文件
sudo nano /etc/gitlab/gitlab.rb
# 修改外部访问URL,将'http://your-domain.com'替换为你的域名或公网IP
external_url 'http://your-domain.com'
# 重新配置GitLab以应用更改
sudo gitlab-ctl reconfigure
- 安装并设置cpolar:
# 下载cpolar客户端
curl -L https://www.cpolar.com/download/cpolar-stable-linux-amd64.zip -o cpolar.zip
unzip cpolar.zip
# 启动cpolar服务
sudo ./cpolar
# WebUI通常可以通过 http://localhost:9200 访问,登录并创建一个隧道指向GitLab的80端口
# 隧道创建成功后,可以通过cpolar提供的公网地址访问GitLab
以上步骤在搭建GitLab私有库的同时,通过cpolar配置了内网穿透,使得在没有公网IP的情况下也能够远程访问GitLab。
评论已关闭