changed listmonk db parameters

This commit is contained in:
2023-12-28 08:17:07 +01:00
parent 92523bdc1b
commit a2382d355a
2 changed files with 4 additions and 6 deletions

View File

@@ -14,13 +14,13 @@ admin_password = "{{listmonk_admin_password}}"
# Database.
[db]
host = "database"
host = "{{database_host}}"
port = 5432
user = "listmonk"
password = "{{listmonk_database_password}}"
user = "{{database_user}}"
password = "{{database_password}}"
# Ensure that this database has been created in Postgres.
database = "listmonk"
database = "{{database_databasename}}"
ssl_mode = "disable"
max_open = 25