Docs / App Marketplace / LAMP Stack Breeze: Quick Start Guide

LAMP Stack Breeze: Quick Start Guide

By Admin · Feb 25, 2026 · Updated Apr 24, 2026 · 208 views · 1 min read

What You Get

The LAMP Stack Breeze comes pre-configured with:

  • Linux — Ubuntu 22.04 LTS
  • Apache — Web server
  • MariaDB — Database server
  • PHP 8.2 — With common extensions

First Steps After Deployment

  1. Connect via SSH: ssh root@YOUR_IP
  2. Your root password was set during deployment

Web Root

Your web files go in:

/var/www/html/

MariaDB Access

# Connect to MariaDB
mysql -u root -p
# Use the root password you set during deployment

# Create a database
CREATE DATABASE myapp;
CREATE USER 'myapp'@'localhost' IDENTIFIED BY 'StrongPassword123';
GRANT ALL PRIVILEGES ON myapp.* TO 'myapp'@'localhost';
FLUSH PRIVILEGES;

PHP Configuration

# Main PHP config
/etc/php/8.2/apache2/php.ini

# Useful settings to adjust
upload_max_filesize = 50M
post_max_size = 50M
memory_limit = 256M
max_execution_time = 300
sudo systemctl restart apache2

Enable SSL

sudo apt install -y certbot python3-certbot-apache
sudo certbot --apache -d yourdomain.com

Deploying WordPress

cd /var/www/html
wget https://wordpress.org/latest.tar.gz
tar xzf latest.tar.gz
mv wordpress/* .
rm -rf wordpress latest.tar.gz
chown -R www-data:www-data /var/www/html

Then visit http://YOUR_IP to complete the WordPress installation wizard.

Was this article helpful?