2018-10-25 21:51:47 +08:00
|
|
|
[app]
|
2020-07-08 19:00:14 +08:00
|
|
|
# Interface and port where the app will run its webserver.
|
|
|
|
address = "0.0.0.0:9000"
|
2019-07-21 21:48:41 +08:00
|
|
|
|
2020-08-08 15:41:49 +08:00
|
|
|
# BasicAuth authentication for the admin dashboard. This will eventually
|
|
|
|
# be replaced with a better multi-user, role-based authentication system.
|
|
|
|
# IMPORTANT: Leave both values empty to disable authentication on admin
|
|
|
|
# only where an external authentication is already setup.
|
|
|
|
admin_username = "listmonk"
|
|
|
|
admin_password = "listmonk"
|
|
|
|
|
2018-10-25 21:51:47 +08:00
|
|
|
# Database.
|
|
|
|
[db]
|
2020-07-08 19:00:14 +08:00
|
|
|
host = "db"
|
|
|
|
port = 5432
|
|
|
|
user = "listmonk"
|
|
|
|
password = "listmonk"
|
|
|
|
database = "listmonk"
|
|
|
|
ssl_mode = "disable"
|
2020-11-17 16:29:32 +08:00
|
|
|
max_open = 25
|
|
|
|
max_idle = 25
|
|
|
|
max_lifetime = "300s"
|