make HTTP_CACHE true by default

This commit is contained in:
Fatih Alp 2021-10-29 11:46:50 +03:00
parent b065608c67
commit 05d0b3af20
2 changed files with 2 additions and 2 deletions

View File

@ -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'),

View File

@ -11,7 +11,7 @@ return [
|
*/
'enabled' => env('HTTP_CACHE', false),
'enabled' => env('HTTP_CACHE', true),
/*
|--------------------------------------------------------------------------