Back to search
LEMP stack setup
wizard webInstall and configure Nginx + MySQL/MariaDB + PHP-FPM
Required Packages
sudo apt install -y nginx mariadb-server php-fpm php-mysql Steps
Step 1 of 4 25%
Ubuntu/Debian = apt, Rocky/Alma/Amazon = dnf
Show all steps
Ubuntu/Debian = apt, Rocky/Alma/Amazon = dnf
Space-separated, e.g. php-mbstring php-xml php-curl
Generated Output
sudo apt update && sudo apt install -y nginx mariadb-server php-fpm php-mysql && sudo systemctl enable --now nginx && sudo systemctl enable --now mariadb && sudo systemctl enable --now php*-fpm && sudo ufw allow 'Nginx Full'