From 33ca717d61cc33af72fbff09c5fd608b25f6414e Mon Sep 17 00:00:00 2001 From: Nico Felbinger Date: Sun, 2 Feb 2025 19:47:44 +0100 Subject: [PATCH] Fix user defaulting to root --- docs/installation/choosing_database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/choosing_database.md b/docs/installation/choosing_database.md index f4e67ddb..cd9657d4 100644 --- a/docs/installation/choosing_database.md +++ b/docs/installation/choosing_database.md @@ -152,7 +152,7 @@ The `charset` parameter specify the character set of the database. It should be If you want to use a unix socket for the connection instead of a TCP connnection, you can specify the socket path in the `host` parameter. ```shell -DATABASE_URL="postgresql://localhost/db_name?serverVersion=16.6&charset=utf8&host=/var/run/postgresql" +DATABASE_URL="postgresql://db_user@localhost/db_name?serverVersion=16.6&charset=utf8&host=/var/run/postgresql" ```