listmonk/config-demo.toml

16 lines
314 B
TOML
Raw Normal View History

[app]
2020-08-01 13:15:29 +02:00
# Interface and port where the app will run its webserver.
address = "0.0.0.0:9000"
# Database.
[db]
2020-08-01 13:15:29 +02:00
host = "demo-db"
port = 5432
user = "listmonk"
password = "listmonk"
database = "listmonk"
ssl_mode = "disable"
max_open = 25
max_idle = 25
max_lifetime = "300s"