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.
No description
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!
Jump to solution
8 Replies
toeknee
toeknee4w ago
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
Dennis Koch
Dennis Koch4w ago
I suspect your accessible domain is not the domain sent in your .env
That's expected when you use S3-like storage. @Shaung Bhone Is there an option to add AllowedDomains on Laravel Cloud?
Shaung Bhone
Shaung BhoneOP4w ago
I do not think so let me check. I think all are the same. Let me check again. All are the same.
toeknee
toeknee4w ago
What about http vs https?
Shaung Bhone
Shaung BhoneOP4w ago
APP_NAME="cycle-sale-service"
APP_ENV=production
APP_DEBUG=false
APP_URL="https://cycle-sale-service*****.laravel.cloud"

SESSION_DRIVER=cookie

CACHE_STORE=database
SCHEDULE_CACHE_DRIVER=database

VITE_APP_NAME="${APP_NAME}"

AWS_BUCKET=fls-9e6*****a3a-f867f809216e
AWS_DEFAULT_REGION=ap-southeast-1
AWS_ENDPOINT=https://367be*****74d0096e0cd.r2.cloudflarestorage.com
AWS_URL=https://fls-******6-aa3a-f867f809216e.laravel.cloud
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_USE_PATH_STYLE_ENDPOINT=false
APP_NAME="cycle-sale-service"
APP_ENV=production
APP_DEBUG=false
APP_URL="https://cycle-sale-service*****.laravel.cloud"

SESSION_DRIVER=cookie

CACHE_STORE=database
SCHEDULE_CACHE_DRIVER=database

VITE_APP_NAME="${APP_NAME}"

AWS_BUCKET=fls-9e6*****a3a-f867f809216e
AWS_DEFAULT_REGION=ap-southeast-1
AWS_ENDPOINT=https://367be*****74d0096e0cd.r2.cloudflarestorage.com
AWS_URL=https://fls-******6-aa3a-f867f809216e.laravel.cloud
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_USE_PATH_STYLE_ENDPOINT=false
Dennis Koch
Dennis Koch4w ago
CORS settings need to be set from Laravel Cloud / Cloudflare.
Shaung Bhone
Shaung BhoneOP4w ago
Thank you for being so helpful in this chat. I got it now. I'll share how I fit.
Solution
Shaung Bhone
Shaung Bhone3w ago
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!

Did you find this page helpful?