feat(aws): update AWS configuration in .env.example and filesystems.php for enhanced settings

This commit is contained in:
ncoronel 2026-06-25 14:20:30 -03:00
parent 93aead8dbf
commit 3360e81e96
2 changed files with 10 additions and 4 deletions

View File

@ -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}"

View File

@ -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,
],
],