mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
43 lines
750 B
YAML
43 lines
750 B
YAML
#
|
|
# EPP, REPP, Admin and Registrar config
|
|
#
|
|
# Registrant example is at database-example-registrant.yml file
|
|
|
|
default: &default
|
|
host: localhost
|
|
adapter: postgresql
|
|
encoding: unicode
|
|
pool: 5
|
|
username: registry
|
|
password: registry_pwd
|
|
|
|
#
|
|
# Staging config For EPP, REPP, Admin, Registrar
|
|
#
|
|
|
|
staging:
|
|
<<: *default
|
|
database: registry_staging
|
|
|
|
whois_staging:
|
|
<<: *default
|
|
database: registry_whois_staging
|
|
|
|
api_log_staging:
|
|
<<: *default
|
|
database: registry_api_log_staging
|
|
|
|
#
|
|
# Production config For EPP, REPP, Admin, Registrar
|
|
#
|
|
production:
|
|
<<: *default
|
|
database: registry_production
|
|
|
|
whois_production:
|
|
<<: *default
|
|
database: registry_whois_production
|
|
|
|
api_log_production:
|
|
<<: *default
|
|
database: api_log_production
|