From f3b72091f5542b1a60e3f04e8253ecc5cd8d0e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Tue, 2 Dec 2025 11:52:22 +0000 Subject: [PATCH] chore: make s3 bucket root configurable --- config/filesystems.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index f0cc733..d575778 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -55,6 +55,7 @@ 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'root' => env('AWS_BUCKET_ROOT'), 'throw' => false, ], 's3-public' => [ @@ -67,6 +68,7 @@ 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, + 'root' => env('AWS_BUCKET_PUBLIC_ROOT'), 'visibility' => 'public', ],