2012-10-09 19:15:26 -04:00
|
|
|
#
|
|
|
|
# PRODUCTION
|
|
|
|
#
|
|
|
|
production:
|
|
|
|
adapter: postgresql
|
|
|
|
encoding: unicode
|
|
|
|
database: gitlabhq_production
|
2013-06-11 11:15:18 -04:00
|
|
|
pool: 10
|
2017-03-26 17:13:09 -04:00
|
|
|
username: git
|
|
|
|
password: "secure password"
|
|
|
|
host: localhost
|
2019-06-13 08:03:37 -04:00
|
|
|
# load_balancing:
|
|
|
|
# hosts:
|
|
|
|
# - host1.example.com
|
|
|
|
# - host2.example.com
|
|
|
|
# discover:
|
|
|
|
# nameserver: 1.2.3.4
|
|
|
|
# port: 8600
|
|
|
|
# record: secondary.postgresql.service.consul
|
|
|
|
# interval: 300
|
2012-10-09 19:15:26 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Development specific
|
|
|
|
#
|
|
|
|
development:
|
|
|
|
adapter: postgresql
|
|
|
|
encoding: unicode
|
|
|
|
database: gitlabhq_development
|
|
|
|
pool: 5
|
|
|
|
username: postgres
|
2017-03-26 17:13:09 -04:00
|
|
|
password: "secure password"
|
|
|
|
host: localhost
|
2012-10-09 19:15:26 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Staging specific
|
|
|
|
#
|
|
|
|
staging:
|
|
|
|
adapter: postgresql
|
|
|
|
encoding: unicode
|
|
|
|
database: gitlabhq_staging
|
2017-03-26 17:13:09 -04:00
|
|
|
pool: 10
|
|
|
|
username: git
|
|
|
|
password: "secure password"
|
|
|
|
host: localhost
|
2012-10-09 19:15:26 -04:00
|
|
|
|
|
|
|
# Warning: The database defined as "test" will be erased and
|
|
|
|
# re-generated from your development database when you run "rake".
|
|
|
|
# Do not set this db to the same as development or production.
|
|
|
|
test: &test
|
|
|
|
adapter: postgresql
|
|
|
|
encoding: unicode
|
|
|
|
database: gitlabhq_test
|
|
|
|
pool: 5
|
|
|
|
username: postgres
|
|
|
|
password:
|
2017-03-26 17:13:09 -04:00
|
|
|
host: localhost
|
2017-07-10 23:35:20 -04:00
|
|
|
prepared_statements: false
|