Skip to content

Instantly share code, notes, and snippets.

@nktstudios
Created April 15, 2020 20:09
Show Gist options
  • Save nktstudios/fcaf50c30f4ce50790876a3fe5dd8ac7 to your computer and use it in GitHub Desktop.
Save nktstudios/fcaf50c30f4ce50790876a3fe5dd8ac7 to your computer and use it in GitHub Desktop.
AWS Certificate Manager Tutorial
#!/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