use AWS_BUCKET_ENDPOINT for s3 filesystem

This commit is contained in:
Ronald A. Richardson
2023-08-03 12:45:32 +08:00
parent 35e81f05cd
commit aea4b781b8
3 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ return [
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'endpoint' => env('AWS_BUCKET_ENDPOINT', env('AWS_ENDPOINT')),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
],