diff --git a/config/cache.php b/config/cache.php index fa12e5e4f..b36148427 100644 --- a/config/cache.php +++ b/config/cache.php @@ -69,8 +69,16 @@ return [ ], 'redis' => [ - 'driver' => 'redis', - 'connection' => 'default', + + 'client' => 'predis', + + 'default' => [ + 'host' => env('REDIS_HOST', 'localhost'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', 6379), + 'database' => env('REDIS_DATABASE', 0), + ], + ], ],