Config: Reverted change to cache directory

Change made during Laravel 10 updates to align (Laravel made this change
much earlier in 5.x series) but it caused issues due to folder not
pre-existing and due to potentiall permission issues.
(CLI could create this during update, with non-compatible permissions
for webserver).

For #4999
This commit is contained in:
Dan Brown 2024-05-18 20:40:26 +01:00
parent fc236f930b
commit 5651d2c43d
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -53,8 +53,8 @@ return [
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'lock_path' => storage_path('framework/cache/data'),
'path' => storage_path('framework/cache'),
'lock_path' => storage_path('framework/cache'),
],
'memcached' => [