Im thinking of using forge for a project im currently working on. But im not sure if this will work with minio which is required for my use case. Does anybody have experience with those two working together ?Thanks for your kind advice
Certainly! Laravel Forge is a server provisioning tool and does not directly manage your storage solutions, but it provisions servers where you can deploy your Laravel applications. MinIO is an S3-compatible object storage server, and Laravel supports S3-compatible drivers out of the box.
Test your storage by uploading a file using Laravel’s Storage facade:
use Illuminate\Support\Facades\Storage;
Storage::disk('s3')->put('test.txt', 'Hello MinIO!');
Summary:
Yes, Forge and MinIO work perfectly together. Forge provisions your server, and MinIO acts as your S3-compatible storage. Just configure your Laravel app to use MinIO as described above.
Let me know if you need help with a specific part of the setup!
@frankielee than you for your reply but this was Not exactly what i meant, for me the question was more of the Likes of: what alternatives are viable for larger Projects ? Is local File storage an Option there ? Or are there other alternatives to s3 there that might be useful ?
My customer basically hast Tasks with files attached to it ( Up to 50mb per File) that act as documentation and need to be uploaded to somewhere. Maybe you have some Insights what I could use ?
what alternatives are viable for larger Projects ? Is local File storage an Option there ? Or are there other alternatives to s3 there that might be useful ?
My customer basically hast Tasks with files attached to it ( Up to 50mb per File) that act as documentation and need to be uploaded to somewhere. Maybe you have some Insights what I could use ?
Since you mentioned the projects are large, S3 would be a better option here. It's better to store files on a separate server so you don't have to worry about your application server's storage getting overwhelmed. Additionally, S3 is definitely better in terms of scalability