LEMP
LEMP is a widely used open-source web stack for hosting dynamic websites and applications. The acronym stands for Linux, Nginx (engine-x), MySQL or MariaDB, and PHP. In a typical LEMP deployment, Linux provides the operating system; Nginx serves HTTP requests and static content with high efficiency; PHP is executed by PHP-FPM (FastCGI Process Manager) to generate dynamic content; the database stores relational data in MySQL or MariaDB.
Nginx acts as the web server and can also function as a reverse proxy and load balancer,
Compared with the LAMP stack, LEMP uses Nginx instead of Apache. This affects configuration and module availability;
Deployment considerations vary by Linux distribution but commonly include installing Nginx, PHP-FPM, and a MySQL-compatible database,