diff options
author | Robert Speicher <rspeicher@gmail.com> | 2019-07-09 12:13:59 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2019-07-09 12:13:59 -0500 |
commit | d1c86dc985847035f987ef97fff07d44f6db0468 (patch) | |
tree | f3a7c6881179b567d9e2f6cef40c796d4dd190ff /config/database_geo.yml.postgresql | |
parent | db04a18d7d8e77d52924e769044011824f7c6e3c (diff) | |
download | gitlab-ce-d1c86dc985847035f987ef97fff07d44f6db0468.tar.gz |
Copy EE-only config files to CErs-config-parity
These aren't used in CE, but it's safe to include them.
Diffstat (limited to 'config/database_geo.yml.postgresql')
-rw-r--r-- | config/database_geo.yml.postgresql | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/config/database_geo.yml.postgresql b/config/database_geo.yml.postgresql new file mode 100644 index 00000000000..2918879f7ed --- /dev/null +++ b/config/database_geo.yml.postgresql @@ -0,0 +1,51 @@ +# +# PRODUCTION +# +production: + adapter: postgresql + encoding: unicode + database: gitlabhq_geo_production + pool: 10 + username: git + password: "secure password" + host: localhost + fdw: true + +# +# Development specific +# +development: + adapter: postgresql + encoding: unicode + database: gitlabhq_geo_development + pool: 5 + username: postgres + password: "secure password" + host: localhost + fdw: true + +# +# Staging specific +# +staging: + adapter: postgresql + encoding: unicode + database: gitlabhq_geo_staging + pool: 10 + username: git + password: "secure password" + host: localhost + fdw: true + +# 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_geo_test + pool: 5 + username: postgres + password: + host: localhost + fdw: true |