From 812160839f72a376ab07637bc0791829502e5dde Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sun, 5 Jun 2016 16:52:18 +0100 Subject: [PATCH] Support a Redis passwords --- config/database.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/database.php b/config/database.php index ce11ab02..5d47720b 100644 --- a/config/database.php +++ b/config/database.php @@ -131,6 +131,7 @@ return [ 'host' => env('REDIS_HOST', '127.0.0.1'), 'port' => env('REDIS_PORT', 6379), 'database' => env('REDIS_DATABASE', 0), + 'password' => env('REDIS_PASSWORD', null), ], ],