Ubuntu搭建git服务器,外网可访问

 

Ubuntu搭建git服务器,外网可访问_第1张图片

  1. gitlab服务器和创建git仓库

https://www.linuxidc.com/Linux/2018-01/150319.htm

访问git仓库

 

  1. 域名申请

比如https://www.huahuigit.tk:8000,通过下面链接可以申请

怎样申请属于自己的动态域名

https://baijiahao.baidu.com/s?id=1553500683303645&wfr=spider&for=pc

 

  1. 动态IP绑定到域名(域名解析)

比如https://www.changeip.com/accounts/index.php?rp=/download/category/4/Linux-or-OSX.html

Ubuntu搭建git服务器,外网可访问_第2张图片

执行这两者都可以,Rinker.sh脚本

Ubuntu搭建git服务器,外网可访问_第3张图片

CIPUSER和CIPPASS要和申请动态域名时用户名和密码一致。

 

  1. 端口映射

vim /etc/gitlab/gitlab.rb

nginx['listen_port'] = 端口//比如默认为80,改为8000,这里要和路由器的端口对应即可。

然后gitlab-ctl reconfigure生效

最后路由器做端口映射

 

  1. 生成ssh key

在终端中敲下面的命令,第一步会生成一对私钥和公钥,分别存在 ~/.ssh/id_rsa和~/.ssh/id_rsa.pub中。第二步查看公钥字符串。

 

   ssh-keygen -t rsa -C "邮箱地址"

   cat ~/.ssh/id_rsa.pub

Ubuntu搭建git服务器,外网可访问_第4张图片

  1. 网页端访问gitlab的仓库

https://www.abc.tk:8000

abc.tk就是要申请的域名

 

  1. Gitlab中保存ssh key

在面板上依次点击Profile Settings –> SSH Keys –> Add SSH Keys。然后把上一步中的id_rsa.pub中的内容拷贝出来粘贴到输入框中,保存

  1. 获取git clone地址

访问https://www.abc.tk:8000

可得到clone的地址

 

 

参考链接:

没固定公网 IP 的公司内网实现动态域名解析( 阿里云万网解析 )

https://blog.csdn.net/michelsn/article/details/80817259

 

通俗易懂的教你把宽带上网的动态IP绑定到一个域名(网址)上

https://baijiahao.baidu.com/s?id=1617255886603802773&wfr=spider&for=pc

 

https://www.huahuigit.tk:8000

 

你可能感兴趣的:(Android开发环境搭建)