当前位置:   article > 正文

docker搭建的gitlab通过域名访问_docker上部署好gitlab后怎么查看地址

docker上部署好gitlab后怎么查看地址

docker ps 查看已经安装好的gitlab,80,443端口也已经打开。
在这里插入图片描述
搭建好gitlab后,需要能让外网访问https访问到。

docker安装gitlab的时候,已经集成nginx只需要配置Nginx即可完成。

进行dns域名解析,直接指向gitleb的公网IP地址

在这里插入图片描述

进入docker内部,编辑gitlab.rb文件

在这里插入图片描述

external_url 'https://gitlab.geexek.com.cn'
nginx['redirect_http_to_https'] = true
nginx['ssl_certificate'] = "/etc/gitlab/ssl/gitlab.geexek.com.cn.crt"
nginx['ssl_certificate_key'] = "/etc/gitlab/ssl/gitlab.geexek.com.cn.key"

nginx['proxy_set_headers'] = {
  "X-Forwarded-Proto" => "https",
  "X-Forwarded-Ssl" => "on"
 }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

修改docker内部,gitlab自己带的Nginx的配置

在这里插入图片描述

server {
  listen *:443 ssl http2;


  server_name gitlab.geexek.com.cn;
  server_tokens off; ## Don't show the nginx version number, a security best practice

  ## Increase this if you want to upload large attachments
  ## Or if you want to accept large git objects over http
  client_max_body_size 0;

  ## Strong SSL Security
  ## https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html & https://cipherli.st/
  ssl on;
  ssl_certificate /etc/gitlab/ssl/gitlab.geexek.com.cn.crt;
  ssl_certificate_key /etc/gitlab/ssl/gitlab.geexek.com.cn.key;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

重新启动docker服务,即可访问

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/120052?site
推荐阅读
相关标签
  

闽ICP备14008679号