Install LEMP Stack on Debian
Install LEMP Stack on Debian 9Today we are going to guide you install LEMP stack to brand new Debian GNU/Linux 9 Stretch. LEMP stands for Linux, Nginx (as in Engine X), MySQL and PHP. From Debian 9, Mariadb is the default mysql server. But you can also choose mysql for installation. It is the counterpart of more popular LAMP stack except instead of Apache httpd we use nginx. Earlier we have tried LEMP stack on Ubuntu and docker container.
Installing Nginx, Mariadb and PHPInstallation of nginx, MariaDB and PHP by bellow command line from bash terminal
apt install nginx mysql-server mysql-client php-fpm php-mysql libfcgi0ldbl
Now start all needed services with systemd and enable them to start at boot
# systemctl start php7.0-fpm nginx mysql
# systemctl enable php7.0-f...