Skip to content

Commit fcdf154

Browse files
committed
Add more environment variables for S3 filesystem options
1 parent 73b795f commit fcdf154

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

config/backups.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
// backup for that server lives within that folder.
3434
'prefix' => env('AWS_BACKUPS_BUCKET') ?? '',
3535

36+
'endpoint' => env('AWS_ENDPOINT'),
37+
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
3638
'use_accelerate_endpoint' => env('AWS_BACKUPS_USE_ACCELERATE', false),
3739
],
3840
],

config/filesystems.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
'secret' => env('AWS_SECRET_ACCESS_KEY'),
5959
'region' => env('AWS_DEFAULT_REGION'),
6060
'bucket' => env('AWS_BUCKET'),
61+
'endpoint' => env('AWS_ENDPOINT'),
62+
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
6163
],
6264
],
6365
];

0 commit comments

Comments
 (0)