We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 183bfc3 + b6c5680 commit 68947caCopy full SHA for 68947ca
.env.example
@@ -11,6 +11,6 @@ DB_COLLATION=utf8mb4_unicode_ci
11
DB_PREFIX=
12
13
REDIS_HOST=localhost
14
-REDIS_AUTH=
+REDIS_AUTH=(null)
15
REDIS_PORT=6379
16
REDIS_DB=0
config/autoload/redis.php
@@ -13,7 +13,7 @@
return [
'default' => [
'host' => env('REDIS_HOST', 'localhost'),
- 'auth' => env('REDIS_AUTH', ''),
+ 'auth' => env('REDIS_AUTH', null),
17
'port' => (int) env('REDIS_PORT', 6379),
18
'db' => (int) env('REDIS_DB', 0),
19
'pool' => [
0 commit comments