1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-09 10:22:51 +03:00

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

View File

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