실습1 - html 문서 만들기 1. 사용자 생성 [root@www ~]# useradd -g users server1user [root@www ~]# passwd server1user 2. 패키지 설치 [root@www ~]# yum -y install httpd php mod_ssl [root@www ~]# systemctl enable httpd [root@www ~]# systemctl start httpd [root@www ~]# ss -nltp or netstat -nltp [root@www ~]# iptables -F 3. html 문서 작성 [root@www ~]# cd /var/www/html [root@www html]# vi index.html // 첫 번째 HTML 문서 4. 웹 사..