Wie ändere ich den Standardport 80 von gitlab in eine benutzerdefinierte Portnummer?
Ich habe zwei Ansätze ausprobiert:
Legen Sie den Port in /etc/gitlab/gitlab.rb fest
external_port "8888"
Führen Sie dann "reconfigure" aus:
gitlab-ctl reconfigure
Stellen Sie den Port in /var/opt/gitlab/gitlab-rails/etc/gitlab.yml ein
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
Dann starte gitlab neu
gitlab-ctl stop
gitlab-ctl start
In beiden Fällen wird gitlab weiterhin mit der Standard-Portnummer 80 ausgeführt.