Skip to content

Commit

Permalink
[9.x] add throw to filesystems config (#5835)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurk91 committed Mar 6, 2022
1 parent 4ecd97b commit 93395a3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config/filesystems.php
Expand Up @@ -33,13 +33,15 @@
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
'throw' => false,
],

'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],

's3' => [
Expand All @@ -51,6 +53,7 @@
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
],

],
Expand Down

0 comments on commit 93395a3

Please sign in to comment.