Skip to content

Instantly share code, notes, and snippets.

@bmcculley
Created September 3, 2021 02:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bmcculley/20b29f366a8b08a82c58dcd909f5b8f6 to your computer and use it in GitHub Desktop.
Save bmcculley/20b29f366a8b08a82c58dcd909f5b8f6 to your computer and use it in GitHub Desktop.
Install nginx on aws ec2 instance
#!/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