database.yml 493 B

1234567891011121314151617181920212223242526
  1. ---
  2. default: &default
  3. database: hello_world
  4. username: benchmarkdbuser
  5. password: benchmarkdbpass
  6. host: tfb-database
  7. timeout: 5000
  8. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 3 } %>
  9. development:
  10. <<: *default
  11. test:
  12. <<: *default
  13. production_mysql:
  14. <<: *default
  15. adapter: trilogy
  16. ssl: true
  17. ssl_mode: 4 <%# Trilogy::SSL_PREFERRED_NOVERIFY %>
  18. tls_min_version: 3 <%# Trilogy::TLS_VERSION_12 %>
  19. production_postgresql:
  20. <<: *default
  21. adapter: postgresql
  22. encoding: unicode