Skip to content

Instantly share code, notes, and snippets.

@tacitphoenix
Forked from mikepfeiffer/apache2.sh
Created July 31, 2020 14:48
Show Gist options
  • Select an option

  • Save tacitphoenix/cc842452400a3b7895649e633a11ee75 to your computer and use it in GitHub Desktop.

Select an option

Save tacitphoenix/cc842452400a3b7895649e633a11ee75 to your computer and use it in GitHub Desktop.
EC2 Bootstrap Script for Apache v2
#!/bin/bash
yum update -y
yum install -y httpd
instanceId=$(curl http://169.254.169.254/latest/meta-data/instance-id)
echo "<h1>Hello World from $instanceId</h1>" > /var/www/html/index.html
systemctl start httpd
systemctl enable httpd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment