From f48e2d500cb53cc4a09dfcb40beb0abafd79de4f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 13 Dec 2019 22:42:46 -0600 Subject: [PATCH] change some default settings --- .env.example | 2 +- config/logging.php | 2 +- config/session.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 604b401f..a09f5cb4 100644 --- a/.env.example +++ b/.env.example @@ -16,7 +16,7 @@ DB_PASSWORD= BROADCAST_DRIVER=log CACHE_DRIVER=file QUEUE_CONNECTION=sync -SESSION_DRIVER=file +SESSION_DRIVER=cookie SESSION_LIFETIME=120 REDIS_HOST=127.0.0.1 diff --git a/config/logging.php b/config/logging.php index 0df82129..ad0aba78 100644 --- a/config/logging.php +++ b/config/logging.php @@ -37,7 +37,7 @@ return [ 'channels' => [ 'stack' => [ 'driver' => 'stack', - 'channels' => ['daily'], + 'channels' => ['single'], 'ignore_exceptions' => false, ], diff --git a/config/session.php b/config/session.php index fbb9b4d7..f99e2e64 100644 --- a/config/session.php +++ b/config/session.php @@ -18,7 +18,7 @@ return [ | */ - 'driver' => env('SESSION_DRIVER', 'file'), + 'driver' => env('SESSION_DRIVER', 'cookie'), /* |--------------------------------------------------------------------------