From 49a53c27bebcf8b958ae94313186b9b12aba7c24 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Wed, 9 Feb 2022 23:17:19 -0700 Subject: [PATCH] Update filesystems config, set S3 visibility to public by default. Fixes #2913 --- config/filesystems.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/filesystems.php b/config/filesystems.php index a43e5b470..5abdee301 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -61,6 +61,7 @@ return [ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), + 'visibility' => 'public', 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),