Skip to content

Commit a2e0bf5

Browse files
committed
Huzzah we can use redis for our database and database sessions now
1 parent 3c5b649 commit a2e0bf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/database.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@
9898
'host' => env('REDIS_HOST', 'localhost'),
9999
'password' => env('REDIS_PASSWORD', null),
100100
'port' => env('REDIS_PORT', 6379),
101-
'database' => env('REDIS_DATBASE', 0),
101+
'database' => env('REDIS_DATABASE', 0),
102102
],
103103

104104
'sessions' => [
105105
'host' => env('REDIS_HOST', 'localhost'),
106106
'password' => env('REDIS_PASSWORD', null),
107107
'port' => env('REDIS_PORT', 6379),
108-
'database' => env('REDIS_DATBASE_SESSIONS', 1),
108+
'database' => env('REDIS_DATABASE_SESSIONS', 1),
109109
],
110110
],
111111
];

0 commit comments

Comments
 (0)