Config.groovy 394 B

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