-
-
Save viannaandreBR/23562e446a32f5e419b71310678f6135 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