샤인의 IT (막 적는) 메모장

[Apache] WEB 설정(httpd.conf) 파일 정리 본문

Open Source

[Apache] WEB 설정(httpd.conf) 파일 정리

신샤인 2021. 12. 30. 17:22
반응형

Apache WEB 서버 구성파일(httpd.conf)

설정 정보 정리

Apache 구성 파일 위치
vi /etc/httpd/conf/httpd.conf

HTTP로 응답할 헤드를 설정하는 Servertokens 옵션
최소한의 정보를 가져오도록만 설정하는게 보안에 좋음. Prod / Major / Minor / Min / OS / Full 옵션
**Servertokens Prod
Server sends (e.g): Server : Apache

Apache Home Directory 지정 ServerRoot
ServerRoot "/etc/httpd"

Apache가 가동되는 동안 수신할 포트 지정 Listen
Listen 80

Apache와 호환되는 모듈 로드
LoadModule ssl_module modules/mod_ssl.so
Include *.conf
설정파일을 분산시켜 저장해 필요한 설정만 로드 가능

Internal Server Error가 발생했을 때 안내문 연락처 ServerAdmin
ServerAdmin user@example.com

서버를 식별하기 위한 호스트 지정 ServerName
ServerName example.com

웹페이지의 Root를 지정 DocumentRoot
 DocumentRoot "${SRVROOT}/htdocs/root"

각 디렉토리에 고유한 설정을 적용하기 위한 블록 Directory
<Directory />
       AllowOverride none
       Require all denied
</Directory>

URL을 다른 URL로 리다이렉트 Redirect
Redirect /service http://example.com/

프록시 모드 ProxyPass
특정 경로 및 하위경로에 대한 요청을 프록시 서버로 중계
ProxyPass /remote  http://example.com

사용자 정의 에러 페이지 ErrorDocument
ErrorDocument 500 /error_500.html

반응형
Comments