From 1ec2b6992485bd4fcb27ccfc7a1c0d021690bcb4 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Sun, 26 Feb 2017 12:57:40 +1100 Subject: [PATCH] Revert 6c5a83de89dfb0704ed2b0d2b83ad90ecd65c15f This has caused performance issues for some people, will need to write a known error about using 127.0.0.1 in some environments instead --- config/database.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/database.php b/config/database.php index 09b250965..3835c07b6 100644 --- a/config/database.php +++ b/config/database.php @@ -54,7 +54,7 @@ return [ 'mysql' => [ 'driver' => 'mysql', - 'host' => '127.0.0.1', + 'host' => 'localhost', 'port' => '', 'database' => 'database', 'username' => 'root', @@ -66,7 +66,7 @@ return [ 'pgsql' => [ 'driver' => 'pgsql', - 'host' => '127.0.0.1', + 'host' => 'localhost', 'port' => '', 'database' => 'database', 'username' => 'root', @@ -78,7 +78,7 @@ return [ 'sqlsrv' => [ 'driver' => 'sqlsrv', - 'host' => '127.0.0.1', + 'host' => 'localhost', 'port' => '', 'database' => 'database', 'username' => 'root',