what is the best way to upload laravel api app to aws?
hi
i have a backend with laravel
and i use all the service of amazone
my frontend is nuxt.js
my DB is in RDS and my images is in S3
my frontend is in S3.
now my laravel app is in EC-2
and i want to get other why to upload my laravel app to amazone server
and i want the best way to upload to aws but witout EC-2,
i didnt want to open a server
somone know if in amazone have more option to upload my larvel app API
and the server didnt down never (not like EC-2 that i have a size for the server.
somthing like S3 but for the API service.
Hi. It sounds like you're after a serverless solution like AWS Lambda (Other solutions are available, but this keeps everything in the AWS family.
Note that if you're not set on using AWS, you might have an easier time with something like Laravel Forge. It'll likely be cheaper (AWS is pricey) and Forge lets you skip the actual server management.
@mknooihuisen
thanks
i see the AWS Lambda
and i need somthing like that but for a php laravel app
amazone have a service like that
i see that ican to use with a tutorial and make its work with laravel
but i didnt think its a good suloation i search about aws service that i update my php files esayli and use composer to
@haizone Amazon isn't likely to create a tool specifically for Laravel. Laravel is great, but it is only one of many PHP Frameworks and even PHP is only one of several languages used to build website backends.
If you want tools specifically designed for Laravel, consider Laravel Forge for server management, combined with a host like Digital Ocean and perhaps Laravel Envoyer to automatically handle deploying your code changes.
*Note: This is a fairly common Laravel configuration and not one I'm being paid to recommend.