What are some good alternatives to Bitnami LAMP for lightweight web apps?

0
6
Asked By TechieWizard93 On

I've been using Bitnami LAMP quite a bit, especially the images available on Azure Marketplace, but I've just learned they've been deprecated and removed. I'm looking for alternative ways to deploy a LAMP stack for my applications, which are lightweight and don't get much traffic. Any suggestions for what system administrators might be using these days?

2 Answers

Answered By WebDevGuru21 On

Instead of a full LAMP stack, have you considered using an Alpine container with just Apache for serving your applications? If you're open to it, sometimes you can build complex websites using just HTML, CSS, and JavaScript without needing a monolithic server setup. It could simplify your deployment and management.

PHPDevMaster -

While that’s an interesting approach, remember these applications are built in PHP, including user login and upload functionalities. It's not just simple static pages we're talking about.

Answered By ResourceHunter88 On

It's good that you're researching options. Have you looked into deploying using Docker? You could run separate containers for your PHP application and your database, which can keep things organized and performant without relying on a full LAMP stack. Plus, it's a widely adopted method these days.

DevNinja2000 -

Docker sounds like a cool option! I had not considered that approach for my setup. Thanks for the suggestion!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.