Redis - Add scheme to allow TLS (#12477)

Ref: https://laravel.com/docs/8.x/redis#configuring-the-connection-scheme
This commit is contained in:
Amund Meling
2021-01-28 16:07:56 +01:00
committed by GitHub
parent a0882af549
commit 22a9f3221a

View File

@ -163,6 +163,7 @@ return [
],
'default' => [
'scheme' => env('REDIS_SCHEME', 'tcp'),
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),