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.
1 parent 1173e19 commit 4fba29cCopy full SHA for 4fba29c
.env.example
@@ -11,13 +11,13 @@ CACHE_DRIVER=file
11
SESSION_DRIVER=file
12
QUEUE_DRIVER=sync
13
14
+REDIS_HOST=localhost
15
+REDIS_PASSWORD=null
16
+REDIS_PORT=6379
17
+
18
MAIL_DRIVER=smtp
19
MAIL_HOST=mailtrap.io
20
MAIL_PORT=2525
21
MAIL_USERNAME=null
22
MAIL_PASSWORD=null
23
MAIL_ENCRYPTION=null
-
-REDIS_HOST=localhost
-REDiS_KEY=
-REDIS_PORT=6379
config/database.php
@@ -117,7 +117,7 @@
117
118
'default' => [
119
'host' => env('REDIS_HOST', 'localhost'),
120
- 'password' => env('REDIS_KEY', ''),
+ 'password' => env('REDIS_PASSWORD', ''),
121
'port' => env('REDIS_PORT', 6379),
122
'database' => 0,
123
],
0 commit comments