설치 환경os - AL2023ssh 접속apache, php, mariaDB web server 설치프로그램 패키지 목록 업데이트sudo dnf updateapache를 설치합니다sudo dnf install httpd아파치 환경 설정httpd.conf 파일 수정index.html 옆에 index.php 추가sudo systemctl start httpd // 웹서버를 시작sudo systemctl enable httpd // 부팅시 자동 실행sudo systemctl is-enabled httpd // 아파치 실행여부파일 권한을 설정합니다sudo usermod -a -G apache ec2-user // 아파치 그룹에 모든 권한을 ec2-user가 상속 받으라는 뜻홈페이지 디렉토리 권한 변경su..