Support the ongoing development of Laravel.io →
Configuration Laravel
Last updated by @yeondevelope 2 days ago.
0

Partial solution

As I've alredy try using Minio (S3) disk with a domain name, and a valid Cloudflared SSL certificate (like https://minio.mydomain.com/bucket-name/...), I've get constantly error message for JUST retriving files and NOT for uploading files.

So I've decide to use OpenSSL certificates, and added to MinIO to serve as HTTPS with a local IP address (https://192.168..:9000) instead of the domain (which for sure will make a security gap if the app is served in a reverse proxy like Cloudflared Tunnel), but will work for now.

Resume

// config/filesystems.php
'custom-minio-s3-disk' => [
  # Configurations added
  'ssl.certificate_verification' => false, # Needed to skip console connection refuse
  'http' = [ 'verify' => false ],
]
// .env
CUSTOM_KEY=...
CUSTOM_SECRET_KEY=...
CUSTOM_BUCKET=bucket-name
CUSTOM_ENDPOINT=https://192.168..:9000 # Using HTTPS with a OpenSSL Certificate

I guess there's some good reason for this error to happen.

Last updated by @yeondevelope 1 day ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Emmanuel yeondevelope Joined 14 Apr 2025

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.