Fixed storage env

This commit is contained in:
Constantin Graf
2024-05-27 15:17:37 +02:00
parent 1a610412dc
commit 7af77c9357
4 changed files with 9 additions and 3 deletions

View File

@@ -77,6 +77,6 @@ return [
|
*/
'profile_photo_disk' => env('PROFILE_PHOTO_DISK', 's3'),
'profile_photo_disk' => env('PROFILE_PHOTO_DISK', env('PUBLIC_FILESYSTEM_DISK', 'public')),
];

View File

@@ -67,6 +67,11 @@ return [
'replace_placeholders' => true,
],
'stderr_daily' => [
'driver' => 'stack',
'channels' => ['stderr', 'daily'],
],
'stack_production' => [
'driver' => 'stack',
'channels' => ['stderr', 'sentry'],