Skip to content

Commit

Permalink
Merge pull request #60 from canyongbs/bugfix/advapp-508-session
Browse files Browse the repository at this point in the history
[ADVAPP-508]: Session Driver inconsistencies
  • Loading branch information
dgoetzit authored Apr 24, 2024
2 parents 71842e8 + b5eb627 commit e098619
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,15 @@
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
],

'session' => [
'scheme' => env('REDIS_SCHEME', 'tcp'),
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_SESSION_DB', '2'),
],
],
];

0 comments on commit e098619

Please sign in to comment.