Created
January 26, 2019 19:43
-
-
Save mikepfeiffer/f7560c9c59587ebfba86b88967714d49 to your computer and use it in GitHub Desktop.
EC2 Bootstrap Script for Apache
This file contains 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 | |
yum install -y httpd | |
echo '<h1>Hello World</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
ok