Config.groovy 379 B

12345678910111213141516171819202122232425
  1. server {
  2. host = '0.0.0.0'
  3. port = 8080
  4. ttl = 5 * 60 * 1000
  5. context = '/'
  6. session {
  7. ttl = 30 * 60
  8. }
  9. debugOutput = false
  10. onlyCachedHeaders = true
  11. }
  12. db {
  13. dbname = 'hello_world'
  14. host = 'tfb-database'
  15. port = 5432
  16. username = 'benchmarkdbuser'
  17. password = 'benchmarkdbpass'
  18. maximumPoolSize = 128
  19. minimumIdle = 128
  20. }