구축

Rocky 9.2 - Apache 설정 - 기본

상석하대 2023. 9. 26. 16:41

【기본 설정 파일】

/etc/httpd/conf/httpd.conf

 

【편집】

httpd.conf 파일을 편집기로 연다.

...
#오류 페이지에 보여줄 실제 사용중인 관리자 이메일 주소로 수정
ServerAdmin webmaster@example.co.kr
...
#호스트 이름과 포트를 지정
ServerName localhost:80
...
#웹루트에서 디렉터리 나열을 제거, Indexes 인자
<Directory "/var/www/html">
    ...
    Options FollowSymLinks
    ...
</Directory>
...
#기본 문자셋을 지정하지 않음, 주석처리
#AddDefaultCharset UTF-8
#바로 아래에 보안을 위해서 다음을 추가
ServerTokens Prod
ServerSignature Off
TraceEnable Off
...

【설정 확인】

apachectl configtest

 

【다시 시작】

systemctl restart httpd.service

 

【기본 사이트 설정 비활성】

mv /etc/httpd/conf.d/welcome.conf /etc/httpd/conf.d/welcome.conf.org

systemctl reload httpd.service

 

【새 페이지 작성 및 접속 테스트】

echo "It's works." > /var/www/html/index.html

http://192.168.0.32

반응형