Commit 516c22441a33d1f053aeb0b2d5a1b686e2863f60

Authored by Florent Baldino
1 parent 5476b0dc

Add 'gitlab_ssh_host' for gitlab.rb

files/gitlab-cookbooks/gitlab/attributes/default.rb
... ... @@ -54,6 +54,7 @@ default['gitlab']['gitlab-rails']['rate_limit_period'] = 60
54 54 default['gitlab']['gitlab-rails']['gitlab_host'] = node['fqdn']
55 55 default['gitlab']['gitlab-rails']['gitlab_port'] = 80
56 56 default['gitlab']['gitlab-rails']['gitlab_https'] = false
  57 +default['gitlab']['gitlab-rails']['gitlab_ssh_host'] = nil
57 58 default['gitlab']['gitlab-rails']['gitlab_email_from'] = "gitlab@#{node['fqdn']}"
58 59 default['gitlab']['gitlab-rails']['gitlab_default_projects_limit'] = 10
59 60 default['gitlab']['gitlab-rails']['gitlab_default_can_create_group'] = nil
... ...
files/gitlab-cookbooks/gitlab/templates/default/gitlab.yml.erb
... ... @@ -17,7 +17,7 @@ production: &base
17 17 # Uncommment this line below if your ssh host is different from HTTP/HTTPS one
18 18 # (you'd obviously need to replace ssh.host_example.com with your own host).
19 19 # Otherwise, ssh host will be set to the `host:` value above
20   - # ssh_host: ssh.host_example.com
  20 + ssh_host: <%= @gitlab_ssh_host %>
21 21  
22 22 # WARNING: See config/application.rb under "Relative url support" for the list of
23 23 # other files that need to be changed for relative url support
... ...