Installing LARAVEL + Nginx + MariaDB + NPM + PHP-FPM on UBUNTU

Опубликовано: 19 Май 2026
на канале: Fausto Cevallos
4,629
106

First video on Software Development Environments (SDEs) for Laravel.

🔥 If you'd like to check it out, I've created a blog post with information about this installation 🔥

https://faustocevallos.com/entorno-de...

Commands:

Server and Tools Installation
sudo apt install -y nginx composer git mariadb

NVM (Version as of the video's publication date)
wget qO https://raw.githubusercontent.com/nvm... | Bash

NVM Repo
https://github.com/nvm-sh/nvm

php packages
sudo apt install openssl php-{common,curl,json,mbstring,mysql,xml,zip,opcache,fpm}

Database permissions
GRANT ALL PRIVILEGES ON dbTest.* To 'user'@'hostname' IDENTIFIED BY 'password';