Skip to content

Instantly share code, notes, and snippets.

@mlabouardy
Created October 24, 2017 12:29
Show Gist options
  • Save mlabouardy/06f64f33b48d5b7f6812b090fddcd8ed to your computer and use it in GitHub Desktop.
Save mlabouardy/06f64f33b48d5b7f6812b090fddcd8ed to your computer and use it in GitHub Desktop.
Install apache server on EC2
#!/bin/bash
yum install -y httpd
service httpd start
chkconfig httpd on
echo “<html><h2>Hello from mlabouardy</h2></html>” > /var/www/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment