".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
[GitLab](/#)是Ruby开发的自托管的Git项目仓库,可通过Web界面访问公开的或者私人的项目。本教程将介绍下如何使用阿里云服务器镜像部署GitLab环境。
1、访问[阿里云](/#)云市场,在产品分类中,依次选择软件市场–应用开发,找到GitLab代码管理并点击它,进入GitLab代码管理镜像详情页面,单击立即购买,然后按界面提示完成配置选型并购买阿里云服务器ECS实例。
2、接下来,远程连接阿里云服务器ECS实例。
3、开启GitLab的远程访问权限。
GitLab镜像部署成功后默认禁止远程访问,所以我们需要开启远程访问,才能通过ECS服务器的公网IP地址访问GitLab的登录界面。
运行以下命令,进入gitlab目录。
> cd gitlab/
运行以下命令,执行gitlab\_opennet.sh脚本。
> ./gitlab\_opennet.sh
命令执行完毕后,即可远程访问GitLab的登录界面。
4、获取阿里云服务器ECS实例的公网IP地址。
* 登录ECS管理控制台。
* 在左侧导航栏,选择实例与镜像 > 实例。
* 在顶部菜单栏左上角处,选择地域。
* 在实例页面,找到所购ECS实例,并在IP地址列获取该实例的公网IP地址。
* 在本地主机中,打开浏览器,然后在地址栏输入ECS实例的公网IP地址,访问GitLab主页。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/103743.html