Skip to content

Commit 9d0862b

Browse files
authored
Merge pull request laravel#5201 from aimeos/master
Use file session driver again
2 parents 9b6d1b1 + f44f065 commit 9d0862b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DB_PASSWORD=
1616
BROADCAST_DRIVER=log
1717
CACHE_DRIVER=file
1818
QUEUE_CONNECTION=sync
19-
SESSION_DRIVER=cookie
19+
SESSION_DRIVER=file
2020
SESSION_LIFETIME=120
2121

2222
REDIS_HOST=127.0.0.1

config/session.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
|
1919
*/
2020

21-
'driver' => env('SESSION_DRIVER', 'cookie'),
21+
'driver' => env('SESSION_DRIVER', 'file'),
2222

2323
/*
2424
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)