Skip to content

Instantly share code, notes, and snippets.

@juanmanuelarias
Created June 15, 2017 08:21
Show Gist options
  • Save juanmanuelarias/7e80003dffe705570cf026f5f9ae6ecf to your computer and use it in GitHub Desktop.
Save juanmanuelarias/7e80003dffe705570cf026f5f9ae6ecf to your computer and use it in GitHub Desktop.
Bootstrap Script for EC2
#!/bin/bash
yum install httpd -y
yum update -y
service httpd start
chkconfig httpd on
echo "<html><h1>Hello World!</h1></html>" > /var/www/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment