From c78fc7b9df2977210f7b15806593489f15188149 Mon Sep 17 00:00:00 2001 From: arhimede Date: Mon, 24 Nov 2025 16:19:26 +0200 Subject: [PATCH] Update PostgreSQL host configuration Change PostgreSQL host from 'localhost' to '127.0.0.1'. Postgres accept localhost only for socket connections, Only 127.0.01 can be configured for `md5` or `Ident` connections Signed-off-by: arhimede --- config/autoload/local.php.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/autoload/local.php.dist b/config/autoload/local.php.dist index f37da1e..29ae708 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -16,7 +16,7 @@ $databases = [ 'table_prefix' => '', ], 'postgresql' => [ - 'host' => 'localhost', + 'host' => '127.0.0.1', 'dbname' => 'dotkernel', 'user' => '', 'password' => '',