gitlabのデフォルトポート80をカスタムポート番号に変更するにはどうすればよいですか?
私が試した2つのアプローチがあります:
/etc/gitlab/gitlab.rbでポートを設定します
external_port "8888"
次に、再構成を実行します。
gitlab-ctl reconfigure
/var/opt/gitlab/gitlab-rails/etc/gitlab.ymlでポートを設定します
production: &base
#
# 1. GitLab app settings
# ==========================
## GitLab settings
gitlab:
## Web server settings (note: host is the FQDN, do not include http://)
host: gitlab.blitting.com
port: 8888
https: false
その後、gitlabを再起動します
gitlab-ctl stop
gitlab-ctl start
両方とも、gitlabは引き続きデフォルトの80ポート番号で実行されます。