From 6c40e05d2db12bd268d1312abe0c4eaaba4506ec Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Fri, 7 May 2021 12:33:22 +0300 Subject: [PATCH] =?UTF-8?q?Use=20=E2=80=98localhost=E2=80=99=20as=20defaul?= =?UTF-8?q?t=20name=20for=20database=20server?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using localhost instead of some random string is much more likely to actually work out of the box. Also it's a lot easier for a sysamdmin to 'scan' for things that need changing. --- config.toml.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml.sample b/config.toml.sample index 21c2d00..d1022a3 100644 --- a/config.toml.sample +++ b/config.toml.sample @@ -11,7 +11,7 @@ admin_password = "listmonk" # Database. [db] -host = "db" +host = "localhost" port = 5432 user = "listmonk" password = "listmonk"