Skip to content

Commit 4bdff25

Browse files
committed
Fix issue with AWS region configuration and default value.
1 parent 9f1e708 commit 4bdff25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/filesystems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
'driver' => 's3',
4949
'key' => env('AWS_ACCESS_KEY_ID'),
5050
'secret' => env('AWS_SECRET_ACCESS_KEY'),
51-
'region' => env('AWS_DEFAULT_REGION'),
51+
'region' => env('AWS_REGION', 'us-east-2'),
5252
'bucket' => env('AWS_BUCKET'),
5353
'url' => env('AWS_URL'),
5454
'endpoint' => env('AWS_ENDPOINT'),

0 commit comments

Comments
 (0)