From 3360e81e96485b49b7d384712cd661f219f58e2b Mon Sep 17 00:00:00 2001 From: ncoronel Date: Thu, 25 Jun 2026 14:20:30 -0300 Subject: [PATCH] feat(aws): update AWS configuration in .env.example and filesystems.php for enhanced settings --- .env.example | 7 +++++-- config/filesystems.php | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index c0660ea..22b762f 100644 --- a/.env.example +++ b/.env.example @@ -56,10 +56,13 @@ MAIL_PASSWORD=null MAIL_FROM_ADDRESS="hello@example.com" MAIL_FROM_NAME="${APP_NAME}" + +AWS_ENDPOINT= AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= -AWS_DEFAULT_REGION=us-east-1 +AWS_DEFAULT_REGION= AWS_BUCKET= -AWS_USE_PATH_STYLE_ENDPOINT=false +AWS_USE_PATH_STYLE_ENDPOINT= +AWS_HTTP_VERIFY= VITE_APP_NAME="${APP_NAME}" diff --git a/config/filesystems.php b/config/filesystems.php index 37d8fca..8977a7c 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -56,8 +56,11 @@ return [ 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), - 'throw' => false, - 'report' => false, + 'http' => [ + 'verify' => env('AWS_HTTP_VERIFY', false), + ], + 'throw' => true, + 'report' => true, ], ],