Created
April 15, 2020 20:09
-
-
Save nktstudios/fcaf50c30f4ce50790876a3fe5dd8ac7 to your computer and use it in GitHub Desktop.
AWS Certificate Manager Tutorial
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 | |
# update the machine | |
yum update -y | |
# install http | |
yum install -y httpd.x86_64 | |
# start the service | |
systemctl start httpd.service | |
# enable service across reboots | |
systemctl enable httpd.service | |
# create the html page to render | |
echo "<h1>Hello World from NKT Studios!</h1>" >/var/www/html/index.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment