From dfd494f0515d8bf712ac0e751b2baf7e687fddeb Mon Sep 17 00:00:00 2001 From: Johann Pardanaud Date: Thu, 9 Nov 2017 20:46:09 +0100 Subject: [PATCH] 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'),