From 05d0b3af20689533e717b3ec5b29a0a20f7232ef Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Fri, 29 Oct 2021 11:46:50 +0300 Subject: [PATCH] make HTTP_CACHE true by default --- config/httpcache.php | 2 +- resources/streams/config/httpcache.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/httpcache.php b/config/httpcache.php index 4d5760ce5..7e43faee4 100644 --- a/config/httpcache.php +++ b/config/httpcache.php @@ -12,7 +12,7 @@ return [ | Set the cache to a writable dir, outside the document root. | */ - 'enabled' => env('HTTP_CACHE', false), + 'enabled' => env('HTTP_CACHE', true), 'esi' => false, 'cache_dir' => storage_path('httpcache'), diff --git a/resources/streams/config/httpcache.php b/resources/streams/config/httpcache.php index 59c5011e5..e4a80ff9e 100644 --- a/resources/streams/config/httpcache.php +++ b/resources/streams/config/httpcache.php @@ -11,7 +11,7 @@ return [ | */ - 'enabled' => env('HTTP_CACHE', false), + 'enabled' => env('HTTP_CACHE', true), /* |--------------------------------------------------------------------------