Someone who has experience with Laravel Cloud Object?
If someone has experience with Laravel Cloud Object Storage, please help me. I am encountering a CORS error with file upload using Filament and Spatie Media Library File Upload. Thank you.

Solution:Jump to solution
Laravel Cloud automatically sets the file system to public using
FILESYSTEM_DISK=public
. I believe it’s using S3, so I configured S3 in the Livewire config. That’s why I need to change public to s3 in the Livewire config. It’s a bit confusing, but thank you!8 Replies
Simple you have a cors error. So you will need to ensure the NGINX is setup to rener the domain correctly. I suspect your accessible domain is not the domain sent in your .env
I suspect your accessible domain is not the domain sent in your .envThat's expected when you use S3-like storage. @Shaung Bhone Is there an option to add AllowedDomains on Laravel Cloud?
I do not think so let me check.
I think all are the same. Let me check again.
All are the same.
What about http vs https?
CORS settings need to be set from Laravel Cloud / Cloudflare.
Thank you for being so helpful in this chat. I got it now. I'll share how I fit.
Solution
Laravel Cloud automatically sets the file system to public using
FILESYSTEM_DISK=public
. I believe it’s using S3, so I configured S3 in the Livewire config. That’s why I need to change public to s3 in the Livewire config. It’s a bit confusing, but thank you!