S3 disk config

Hello everyone! Can you help me use an s3 disk in Filament? I'm trying but I get the error: Unable to check existence for. Here is my filesystem configuration

's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => true,
'visibility' => 'public',
],
Solution
Sorry, never worked with supabase and s3 so not 100 sure. But any s3 connection needs to be a private visibilty even if the bucket is public. Hopefully someone else has some more experience and can help further.
Was this page helpful?