기술노트

기술노트

게시물 상세
CentOS8 httpd 설치
작성자 : 관리자(jieun@ehostidc.co.kr)  작성일 : 2020-11-10   조회수 : 2971

1) httpd 설치

root@localhost:[~]: dnf install httpd*

 

2) conf파일 수정

root@localhost:[~]: vi /etc/httpd/conf/httpd.conf

ServerName 192.168.126.10:80 #line 98

Options FollowSymLinks #line 147AllowOverride All #line 154

 DirectoryIndex index.html index.php index.cgi #line 167

ServerTokens Prod #line 167 

KeepAlive On #line 168

 

3) httpd 활성화 및 방화벽 정책 추가

root@localhost:[~]: systemctl enable --now httpd

root@localhost:[~]: firewall-cmd --add-service=http –permanent

 root@localhost:[~]: firewall-cmd --reload

 

4) html파일 생성 및 웹페이지 확인

 

root@localhost:[~]: vi /var/www/html/index.html

<html> 

<body> 

<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;"> 

Test Page 

</div> 

</body>

</html>
이전글 CentOS8 MariaDB 설치
다음글 Maria DB Galera Cluster 구성