From b043407a4fb100ebb7a52abba3430a7757c9783b Mon Sep 17 00:00:00 2001 From: Valentin Ouvrard Date: Wed, 25 Oct 2023 19:12:08 +1100 Subject: [PATCH] feat(s3-aws): Implement use_path_style_endpoint for Minio usage (#228) * feat(s3-aws): Implement use_path_style_endpoint for Minio usage (https://min.io/) * feat(s3): moove default path style to true --------- Co-authored-by: Valentin Ouvrard Co-authored-by: Julien Nahum --- config/filesystems.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/filesystems.php b/config/filesystems.php index 94c8112..617e720 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -63,6 +63,7 @@ return [ 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', true), ], ],