mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 09:00:56 +08: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:
parent
fc236f930b
commit
5651d2c43d
|
@ -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' => [
|
||||
|
|
Loading…
Reference in New Issue
Block a user