Hosting or service, where could our Laravel application store images?
We have a Laravel project with a very specific requirements on a server. Therefore were are renting and managing server ourselves. Now we need to allow users upload/delete images. In first stage it will be hundreds of GB of data. And very soon we will go into TB and growing further.
I don't want to deal with it on our server. Backups etc. So I'm looking for some external service/hosting, where could our Laravel application upload/delete images. Our server is in central Europe, Prague. And all the users will be here too.
@merrychristmas Where your web application is hosted, and where user-uploaded files are stored, don’t need to be the same. You could run your app on a “traditional” host and upload files to somewhere like Amazon S3.
@martinbean Yes, something like this. In ideal case Laravel can work with that service. I think Storage has support for some 3rd party services, but I know anything about it.
@MerryChristmas Yes, Laravel supports using S3. If you open your config/filesystems.php file, you’ll see there’s an example S3 configuration in there already.