Skip to content

Instantly share code, notes, and snippets.

@nmagee
Created September 24, 2020 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmagee/5636d0355d48998f91502dd811a7401c to your computer and use it in GitHub Desktop.
Save nmagee/5636d0355d48998f91502dd811a7401c to your computer and use it in GitHub Desktop.
Bootstraps Amazon Linux 2 with apache2 daemon
#!/bin/bash
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment