This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install PHPMyAdmin on Nginx Ubuntu 18.04 | |
https://youtu.be/pGc8DbJVupE How to Install Nginx, PHP, MySQL (LEMP) on Ubuntu 18.04 | |
sudo apt update && sudo apt install nginx -y | |
sudo service nginx status | |
sudo ufw allow OpenSSH | |
sudo ufw allow 'Nginx HTTP' | |
sudo ufw enable | |
sudo ufw status | |
check ngix is working, go load your website up, has default ngix page | |
sudo apt update && sudo apt install mysql-server -y |