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') ], ],