Install LEMP Stack NGINX MariaDB PHP on Ubuntu 21.04

1 · The Duck Channel · Aug. 9, 2021, 7:10 p.m.
Hi all, in this video i will show how to install LEMP Stack (Nginx + MariaDB + PHP) on Ubuntu 21.04 desktop/server. I hope you enjoy! Links Ubuntu Download Steps #1. Update your System $ sudo apt update $ sudo apt upgrade #2. Install Nginx $ sudo apt install nginx $ sudo chown -R www-data:www-data /usr/share/nginx/html $ sudo systemctl enable --now nginx $ sudo systemctl status nginx Point your browser to http://localhost #3. Install MariaDB $ sudo apt install mariadb-server mariadb-client...