/***************************************************************************** * GitLab non-standard SSH port * 说明: * 有时候GitLab Server使用非标准的SSH port,GitLab Web界面上显示出来会比较 * 方便一点。 * * 2017-5-16 台湾 中和区 曾剑锋 ****************************************************************************/一、参考文档: 1. Gitlab with non-standard SSH port (on VM with Iptable forwarding) http://stackoverflow.com/questions/18517189/gitlab-with-non-standard-ssh-port-on-vm-with-iptable-forwarding二、GitLab设定: 1. 直接修改GitLab设定: 1. config/gitlab.yml (找不到就用find找一下) ssh_port: 766 2. 重启; 2. 修改GitLab系统配置: 1. /etc/gitlab/gitlab.rb gitlab_rails['gitlab_shell_ssh_port'] = 766 2. gitlab-ctl reconfigure