diff --git a/app/Services/ImageService.php b/app/Services/ImageService.php index 274172f0f..f645a06a5 100644 --- a/app/Services/ImageService.php +++ b/app/Services/ImageService.php @@ -261,7 +261,7 @@ class ImageService // Get the standard public s3 url if s3 is set as storage type if ($storageUrl == false && config('filesystems.default') === 's3') { $storageDetails = config('filesystems.disks.s3'); - $storageUrl = 'https://s3-' . $storageDetails['region'] . '.amazonaws.com/' . $storageDetails['bucket']; + $storageUrl = 'https://' . $storageDetails['bucket'] . '.s3.amazonaws.com'; } $this->storageUrl = $storageUrl;