diff --git a/config/backups.php b/config/backups.php index fde856215..ec9bd175e 100644 --- a/config/backups.php +++ b/config/backups.php @@ -33,6 +33,8 @@ return [ // backup for that server lives within that folder. 'prefix' => env('AWS_BACKUPS_BUCKET') ?? '', + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'use_accelerate_endpoint' => env('AWS_BACKUPS_USE_ACCELERATE', false), ], ], diff --git a/config/filesystems.php b/config/filesystems.php index 809742bed..bffcc6514 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -58,6 +58,8 @@ return [ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), ], ], ];