This file contains 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
Step 1: Let's start with NGINX installation | |
sudo dnf update //To Install Latest Update | |
sudo dnf install -y nginx // Install Nginx | |
sudo systemctl start nginx.service //Start Nginx Server | |
sudo systemctl status nginx.service // Check Server Status | |
sudo systemctl enable nginx.service // Enable Auto Server Start on Reboot | |
Now you should be able to see the server running by hitting your public ip. |
This file contains 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
https://jason.pureconcepts.net/2015/10/install-apache-php-mysql-mac-os-x-el-capitan/ | |
https://jason.pureconcepts.net/2012/10/install-apache-php-mysql-mac-os-x/ | |
https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-osx-10-11-el-capitan/ | |
http://www.alphansotech.com/blogs/setup-apache-mysql-php-phpmyadmin-mac-osx/ | |
https://mallinson.ca/osx-web-development/ | |
https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-osx-10-11-el-capitan/ | |
##Apache httpd file location | |
/etc/apache2 |
This file contains 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
commit(){ | |
echo "Please enter a commit message..." | |
read msg | |
git add . --all | |
git commit -am $msg | |
} | |
check_commit(){ | |
echo ========== CHECKING FOR CHANGES ======== | |
changes=$(git diff) |