chore(config): use redis for caching

This commit is contained in:
peaklabs-dev 2025-12-04 15:42:09 +01:00
parent 70b9b33e64
commit e10096bffe
No known key found for this signature in database

View file

@ -16,7 +16,7 @@ return [
|
*/
'default' => env('CACHE_STORE', 'database'),
'default' => env('CACHE_STORE', 'redis'),
/*
|--------------------------------------------------------------------------
@ -116,5 +116,5 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'coolify')).'-cache-'),
];