2016-02-20 22:53:20 +01:00
|
|
|
default: &default
|
|
|
|
adapter: postgresql
|
2023-11-08 14:15:43 +01:00
|
|
|
pool: <%= ENV["DB_POOL"] || (if Sidekiq.server? then Sidekiq[:concurrency] else ENV['MAX_THREADS'] end) || 5 %>
|
2016-02-20 22:53:20 +01:00
|
|
|
timeout: 5000
|
2022-12-07 00:39:36 +01:00
|
|
|
connect_timeout: 15
|
2016-03-14 21:39:39 +01:00
|
|
|
encoding: unicode
|
2019-03-08 14:36:28 +01:00
|
|
|
sslmode: <%= ENV['DB_SSLMODE'] || "prefer" %>
|
2023-03-05 01:52:42 +01:00
|
|
|
application_name: ''
|
2016-02-20 22:53:20 +01:00
|
|
|
|
|
|
|
development:
|
2023-07-17 08:26:52 +02:00
|
|
|
primary:
|
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_development' %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
2023-08-03 16:17:09 +02:00
|
|
|
replica:
|
2023-07-17 08:26:52 +02:00
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_development' %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
|
|
|
replica: true
|
2016-02-20 22:53:20 +01: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:
|
2023-07-17 08:26:52 +02:00
|
|
|
primary:
|
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon' %>_test<%= ENV['TEST_ENV_NUMBER'] %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
2023-08-03 16:17:09 +02:00
|
|
|
replica:
|
2023-07-17 08:26:52 +02:00
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon' %>_test<%= ENV['TEST_ENV_NUMBER'] %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
|
|
|
replica: true
|
2016-02-20 22:53:20 +01:00
|
|
|
|
|
|
|
production:
|
2023-07-08 19:45:36 +02:00
|
|
|
primary:
|
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_production' %>
|
|
|
|
username: <%= ENV['DB_USER'] || 'mastodon' %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] || 'localhost' %>
|
|
|
|
port: <%= ENV['DB_PORT'] || 5432 %>
|
|
|
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
2023-08-03 16:17:09 +02:00
|
|
|
replica:
|
2023-07-08 19:45:36 +02:00
|
|
|
<<: *default
|
2023-08-08 13:59:40 +02:00
|
|
|
database: <%= ENV['REPLICA_DB_NAME'] ||ENV['DB_NAME'] || 'mastodon_production' %>
|
|
|
|
username: <%= ENV['REPLICA_DB_USER'] ||ENV['DB_USER'] || 'mastodon' %>
|
|
|
|
password: <%= (ENV['REPLICA_DB_PASS'] || ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['REPLICA_DB_HOST'] ||ENV['DB_HOST'] || 'localhost' %>
|
|
|
|
port: <%= ENV['REPLICA_DB_PORT'] ||ENV['DB_PORT'] || 5432 %>
|
2023-07-08 19:45:36 +02:00
|
|
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
|
|
|
replica: true
|