Skip to content

Instantly share code, notes, and snippets.

@tsabunkar
Last active March 19, 2026 05:21
Show Gist options
  • Select an option

  • Save tsabunkar/68070b9d7de92cf7b759e6bc91c52d84 to your computer and use it in GitHub Desktop.

Select an option

Save tsabunkar/68070b9d7de92cf7b759e6bc91c52d84 to your computer and use it in GitHub Desktop.
User Data for Amazon Linux 2023 AMI - Spinup a httpd server and host a web page
#!/bin/bash
# Update packages
dnf update -y
# Install Apache
dnf install -y httpd
# Start and enable service
systemctl start httpd
systemctl enable httpd
# Create web page
echo "<h1>Hello World from $(hostname -f)</h1>" > /var/www/html/index.html
# Fix permissions (important for AL2023 sometimes)
chmod 644 /var/www/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment