Last active
May 13, 2017 02:47
-
-
Save afuggini/18ff22ec7ddb2d9f78cde922ca799da6 to your computer and use it in GitHub Desktop.
Server Deploy
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
#!/bin/sh | |
# Install GIT | |
sudo yum install git-all | |
# Install NODE | |
yum install -y gcc-c++ make | |
curl -sL https://rpm.nodesource.com/setup_6.x | sudo -E bash - | |
yum install -y nodejs | |
# Install NGINX | |
sudo yum install -y epel-release | |
sudo yum install -y nginx | |
# Start NGINX | |
sudo systemctl start nginx | |
sudo systemctl enable nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment