Skip to content

Commit

Permalink
Merge pull request laravel#5201 from aimeos/master
Browse files Browse the repository at this point in the history
Use file session driver again
  • Loading branch information
driesvints authored Jan 14, 2020
2 parents 9b6d1b1 + f44f065 commit 9d0862b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=cookie
SESSION_DRIVER=file
SESSION_LIFETIME=120

REDIS_HOST=127.0.0.1
Expand Down
2 changes: 1 addition & 1 deletion config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
|
*/

'driver' => env('SESSION_DRIVER', 'cookie'),
'driver' => env('SESSION_DRIVER', 'file'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 9d0862b

Please sign in to comment.