From 73f723a2f4153f87b3d45d23addc0923f233de57 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Thu, 9 Apr 2020 16:54:25 +0200 Subject: [PATCH] Add both endpoint and url env variables (#5276) --- 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'), ], ],