From 9930718a67d6bf06921b152be7a5a97a9227449e Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Thu, 9 Apr 2020 11:28:15 +0200 Subject: [PATCH] Add both endpoint and url env variables --- config/filesystems.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index a0ec1290202..220c01048ce 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -61,7 +61,8 @@ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), - 'endpoint' => env('AWS_URL'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), ], ],