Skip to content

Instantly share code, notes, and snippets.

@ealexisaraujo
Created March 6, 2022 01:15
Show Gist options
  • Save ealexisaraujo/e88a705e2db2aff4ae46dca0971d0f0e to your computer and use it in GitHub Desktop.
Save ealexisaraujo/e88a705e2db2aff4ae46dca0971d0f0e to your computer and use it in GitHub Desktop.
#!/bin/bash
# Use this for your user data (script from top to bottom)
# install httpd (Linux 2 version)
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
echo "<h1>Hello World from $(hostname -f)</h1>" > /var/www/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment