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
- Connect via SSH:
ssh root@YOUR_IP - 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 = 300sudo systemctl restart apache2Enable SSL
sudo apt install -y certbot python3-certbot-apache
sudo certbot --apache -d yourdomain.comDeploying 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/htmlThen visit http://YOUR_IP to complete the WordPress installation wizard.