Created
June 12, 2023 17:46
-
-
Save sanju2/f744153261fe4e776295d2627f9ec2bb to your computer and use it in GitHub Desktop.
EC2 101 demo
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 | |
# 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