Created
September 3, 2021 02:07
-
-
Save bmcculley/20b29f366a8b08a82c58dcd909f5b8f6 to your computer and use it in GitHub Desktop.
Install nginx on aws ec2 instance
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
#!/bin/bash | |
yum update -y | |
sudo amazon-linux-extras install nginx1 -y | |
sudo systemctl start nginx.service | |
sudo systemctl enable nginx.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment