In this section you'll find links submitted by others.

Did you write or stumbled across a blog post, tutorial or video that might be interesting for others?

To be able to submit a link you need to log in first.

Log in

Hosting a Laravel app with AWS Beanstalk

www.csrhymes.com - submitted by Chris Rhymes

If you have to use AWS for hosting, and for whatever reason, you can’t make use of Forge or Vapor, then one potential elastic, scalable solution is AWS Beanstalk. AWS Beanstalk essentially provides you with a number of EC2 (Elastic Cloud Computing) servers that sit behind a load balancer. If demand increases then more instances can be created. If demand drops then the number of instances drops down to save you costs.

Read more [www.csrhymes.com]

Laravel Zero Downtime Deployment Script

www.laracraft.tech - submitted by Zacharias Creutznacher

Deploying a Laravel application without downtime is essential for maintaining a seamless user experience. This deployment script achieves exactly that, ensuring a smooth transition between releases. It clones the latest version of your project, sets up environment files, installs dependencies, runs migrations, and links the new release—all while keeping your application live. With built-in clean-up for old releases and error handling, this script is a robust solution for modern Laravel deployments.

Read more [www.laracraft.tech]