From dfd494f0515d8bf712ac0e751b2baf7e687fddeb Mon Sep 17 00:00:00 2001 From: Johann Pardanaud Date: Thu, 9 Nov 2017 20:46:09 +0100 Subject: [PATCH 1/2] Support custom URLs for AWS storage --- config/filesystems.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/filesystems.php b/config/filesystems.php index 4544f60c..c569e013 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -57,6 +57,7 @@ 's3' => [ 'driver' => 's3', + 'url' => env('AWS_URL'), 'key' => env('AWS_KEY'), 'secret' => env('AWS_SECRET'), 'region' => env('AWS_REGION'), From 411ff5978cc86eae21ab903a2ee97b9e41f7c951 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 10 Nov 2017 08:19:10 -0600 Subject: [PATCH 2/2] Update filesystems.php --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index c569e013..525f9a9e 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -57,11 +57,11 @@ 's3' => [ 'driver' => 's3', - 'url' => env('AWS_URL'), 'key' => env('AWS_KEY'), 'secret' => env('AWS_SECRET'), 'region' => env('AWS_REGION'), 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), ], ],