Commit 86cdf0f3cfc8bedf3d754f2cfce5fc33a899ad12
Exists in
master
and in
11 other branches
Merge branch 'fix_pg_port' into 'master'
Fix DB Port - Fixes #121 DB Port was previously defaulted to 6379 (redis port) instead of the default Postgres port 5432.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/attributes/default.rb
... | ... | @@ -107,7 +107,7 @@ default['gitlab']['gitlab-rails']['db_pool'] = 10 |
107 | 107 | default['gitlab']['gitlab-rails']['db_username'] = "gitlab" |
108 | 108 | default['gitlab']['gitlab-rails']['db_password'] = "password" |
109 | 109 | default['gitlab']['gitlab-rails']['db_host'] = "localhost" |
110 | -default['gitlab']['gitlab-rails']['db_port'] = 6379 | |
110 | +default['gitlab']['gitlab-rails']['db_port'] = 5432 | |
111 | 111 | default['gitlab']['gitlab-rails']['db_socket'] = nil |
112 | 112 | |
113 | 113 | #### | ... | ... |