[IT 알아보기]/IT 소식

[그린IDC]Apache mod_expires 모듈 설치

이호스트ICT 2011. 5. 17. 12:05

설치-Apache_2.0.59 모듈 추가 설치
/usr/local/apache/bin/apxs -iac /usr/local/apache/bin/apxs -iac mod_expires.c.c

설치확인
httpd.conf에서 LoadModule expires_module     modules/mod_expires.so 추가 되었는지 확인

설정
<VirtualHost *>
ServerName img.xxxxxx.co.kr
DocumentRoot /home/auction/www
#########이미지(gif/jpeg) 캐싱 한달로 설정#############
<Directory "/home/auction/www/img">
ExpiresActive On
ExpiresByType image/jpeg "acces plus 1 month"
ExpiresByType image/gif "acces plus 1 month"
</Directory>
################################################
</VirtualHost>

작동 확인
lynx  -head http://img.xxxxxx.co.kr/news/data/img/204630001160317126.jpg  --> 결과에서 'Cache-Control:' 헤더 부분 확인

Date: Tue, 12 Dec 2006 07:40:21 GMT
Server: Apache
Last-Modified: Sun, 08 Oct 2006 14:18:46 GMT
ETag

'[IT 알아보기] > IT 소식' 카테고리의 다른 글

[그린IDC]src rpm 사용하기  (0) 2011.05.17
[그린IDC]LVM 마운트  (0) 2011.05.17
[그린IDC]CISCO 3500XL IOS 이미지 복구  (0) 2011.05.17
[그린IDC]WebKnight 운영  (0) 2011.05.17
rsync를 이용한 원격지백업  (0) 2011.05.16