Skip to content

Instantly share code, notes, and snippets.

@hongsw
Created November 19, 2025 02:45
Show Gist options
  • Select an option

  • Save hongsw/5a690872ac6fdba7d4f012b515d0eb62 to your computer and use it in GitHub Desktop.

Select an option

Save hongsw/5a690872ac6fdba7d4f012b515d0eb62 to your computer and use it in GitHub Desktop.
Amazon Linux 2023 — 최소 HTML 1줄 출력 User-data
#!/bin/bash
# ===== Apache 설치 =====
dnf update -y
dnf install -y httpd
# ===== Apache 자동 시작 =====
systemctl enable httpd
systemctl start httpd
# ===== 최소 HTML 한 줄만 생성 =====
echo "<p>안녕 vm</p>" > /var/www/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment