1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- application {
-
- env = dev
- version = "1.0"
- name="Proteus"
-
- path = ""
- # localhost
- host = "0.0.0.0"
- # HTTP ports
- ports
- {
- http = 8080
- }
- }
- application.tmpdir=${java.io.tmpdir}
- api.version="v1"
- globalHeaders
- {
- # Access-Control-Allow-Origin: "*"
- # Access-Control-Allow-Methods: "*"
- # Access-Control-Allow-Headers: "*"
- Server: "P"
- }
- assets {
- path = "/public"
- dir = "./assets"
- cache {
- time = 500
- }
- }
- mysql
- {
- hikaricp
- {
- jdbcUrl= "jdbc:mysql://tfb-database:3306/hello_world?useServerPrepStmts=true&cachePrepStmts=true&useSSL=false",
- #jdbcUrl= "jdbc:mysql://tfb-database:3306/hello_world?useServerPrepStmts=true&cachePrepStmts=true&useUnicode=true",
- maximumPoolSize=48
- username = benchmarkdbuser
- password = benchmarkdbpass
-
- }
- }
- postgres
- {
- hikaricp
- {
- description="postgresql server"
- jdbcUrl= "jdbc:postgresql://tfb-database:5432/hello_world",
- maximumPoolSize=256
- username = benchmarkdbuser
- password = benchmarkdbpass
- }
- }
-
|