From bf14dee28feb4667966586d63c006080c9e05dd5 Mon Sep 17 00:00:00 2001 From: Saeid Date: Tue, 22 Dec 2020 19:07:22 +0330 Subject: [PATCH] fix: filesystem url path --- config/filesystems.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/filesystems.php b/config/filesystems.php index 45a038f..f8839a7 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -73,12 +73,13 @@ return [ ], 'media' => [ - 'driver' => 'minio', + 'driver' => 's3', 'key' => env('MINIO_KEY', 'your minio server key'), 'secret' => env('MINIO_SECRET', 'your minio server secret'), 'region' => 'us-east-1', 'bucket' => env('MINIO_BUCKET','your minio bucket name'), - 'endpoint' => env('MINIO_ENDPOINT','http://localhost:8000') + 'endpoint' => env('MINIO_ENDPOINT','http://localhost:8000'), + 'url' => 'https://cdn.willaspace.com/'. env('MINIO_BUCKET') ], ],