listmonk/config.toml.tmpl

17 lines
324 B
Cheetah

[app]
address = "0.0.0.0:9000"
admin_username = "admin"
admin_password = "{{ secret "admin_password" }}"
# Database.
[db]
host = "{{ env "LISTMONK_DB_HOST" }}"
port = 5432
user = "listmonk"
password = "{{ secret "db_password" }}"
database = "listmonk"
ssl_mode = "disable"
max_open = 25
max_idle = 25
max_lifetime = "300s"