Created
November 19, 2025 02:45
-
-
Save hongsw/5a690872ac6fdba7d4f012b515d0eb62 to your computer and use it in GitHub Desktop.
Amazon Linux 2023 — 최소 HTML 1줄 출력 User-data
This file contains hidden or 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 | |
| # ===== 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