summarylogtreecommitdiffstats
path: root/listmonk.toml
diff options
context:
space:
mode:
Diffstat (limited to 'listmonk.toml')
-rw-r--r--listmonk.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/listmonk.toml b/listmonk.toml
new file mode 100644
index 000000000000..44ea3a2acef1
--- /dev/null
+++ b/listmonk.toml
@@ -0,0 +1,22 @@
+[app]
+ # Interface and port where the app will run its webserver.
+ address = "0.0.0.0:9000"
+
+ # 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 = "TKByjizucIoex3mA"
+
+# Database.
+[db]
+ host = "localhost"
+ port = 5432
+ user = "listmonk"
+ password = "TKByjizucIoex3mA"
+ database = "listmonk"
+ ssl_mode = "disable"
+ max_open = 25
+ max_idle = 25
+ max_lifetime = "300s"