Response Header 정보 제거하기(Server: Apache)
아파치(apache) 서버를 설치하게 되면 기본적으로 Response Header값에 아래와 같은 상세한 서버 정보가 포함됩니다.
Server: Apache/2.2.6 (Unix) mod_ssl/2.2.6 OpenSSL/0.9.8e-fips-rhel5
대부분 사이트는 위의 상세하게 제공되는 헤더 정보는 불필요하게 됩니다.
위의 헤더 항목을 아래와 같이 간략하게 줄여 트래픽을 절약하는 방법에 대해서 알아보겠습니다.
글자수가 줄여진 헤더 항목 내용
Server: Apache
1. 설정 방법
apache의 설정파일중, httpd.conf 파일이나 extra/httpd-default.conf 파일에서 ServerTokens, ServerSignature 설정값을 아래와 같이 변경하세요.
ServerSignature Off
ServerTokens Prod
설정전의 헤더 항목 값
설정후 헤더 항목 값
참고 : X-Powered-By 헤더 제거 하기
출처 : http://www.youtu.kr/