Skip to content

Commit 4fba29c

Browse files
committed
fix problems
1 parent 1173e19 commit 4fba29c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.env.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ CACHE_DRIVER=file
1111
SESSION_DRIVER=file
1212
QUEUE_DRIVER=sync
1313

14+
REDIS_HOST=localhost
15+
REDIS_PASSWORD=null
16+
REDIS_PORT=6379
17+
1418
MAIL_DRIVER=smtp
1519
MAIL_HOST=mailtrap.io
1620
MAIL_PORT=2525
1721
MAIL_USERNAME=null
1822
MAIL_PASSWORD=null
1923
MAIL_ENCRYPTION=null
20-
21-
REDIS_HOST=localhost
22-
REDiS_KEY=
23-
REDIS_PORT=6379

config/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
'default' => [
119119
'host' => env('REDIS_HOST', 'localhost'),
120-
'password' => env('REDIS_KEY', ''),
120+
'password' => env('REDIS_PASSWORD', ''),
121121
'port' => env('REDIS_PORT', 6379),
122122
'database' => 0,
123123
],

0 commit comments

Comments
 (0)