Git gitlab私庫cloneアドレス

779 ワード

gitlabをインストールし、新規プロジェクトを作成した後、デフォルトのcloneリンクは[email protected]:test/test.git、httpもgitlab.exampleというように、毎回cloneの時はマニュアルで変えて、ipまたはドメイン名に変えてください。以下のようにexternal_を変更できます。url、つまりgitlab.exampleです。
直接変更/etc/gitlab/gitlab.rbは有効ではないので、変更/opt/gitlab/embedded/service/gitlas/gitlas/config/gitlab.ymlファイル(centos 7)の中でhostとportはドメイン名に変えられます。
vi /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml
 # 1. GitLab app settings
  # ==========================

  ## GitLab settings
  gitlab:
    ## Web server settings (note: host is the FQDN, do not include http://)
    host: xxx.xxx.xxx.xxx
    port: 8181
    https: false
 
変更後はgitlab-ctl retartを実行し、gitlabに再入場すると発効します。 
原文:https://blog.csdn.net/wq3028/article/details/81736486