From e776f439b0c3bfb02f36280f3201844520a510b5 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 9 Oct 2016 17:22:25 +0300 Subject: [PATCH] Added env value for REDIS_HOST --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 082117ea767f..a184796c2ba4 100644 --- a/config/database.php +++ b/config/database.php @@ -115,7 +115,7 @@ return [ 'cluster' => false, 'default' => [ - 'host' => '127.0.0.1', + 'host' => env('REDIS_HOST', '127.0.0.1'), 'port' => 6379, 'database' => 0, ],