Skip to content

Instantly share code, notes, and snippets.

@narwanimonish
Created November 30, 2019 12:30
Show Gist options
  • Save narwanimonish/56532232fadf2357e23908b415fc3f4f to your computer and use it in GitHub Desktop.
Save narwanimonish/56532232fadf2357e23908b415fc3f4f to your computer and use it in GitHub Desktop.
Install Nginx 1.12 on Amazon Linux AMI 2
#!/bin/bash
sudo su
yum update -y
amazon-linux-extras install nginx1.12 -y
systemctl start nginx
echo "Hello from $(hostname -f)" > /usr/share/nginx/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment