Apache access_log 파일에 특정 확장자를 가진 파일에 관련한 로그를 남기지 않기
jpg, gif, swf, css, jpeg 파일 등과 같은 정보를 access log 파일에 남기지 않기
]# vi /usr/local/apache2/extra/httpd-vhost.conf
<VirtualHost *:80>
DocumentRoot /www/okkks.tistory.com
ServerName okkks.tistory.com
ServerAlias okkks *.okkks.tistory.com
ErrorLog "|/usr/local/apache2/bin/rotatelogs /usr/local/apache2/logs/lottoext-error-%y%m%d_log 86400 +540"
# not log
SetEnvIf Request_URI ".jpg$" not_log
SetEnvIf Request_URI ".jpeg$" not_log
SetEnvIf Request_URI ".gif$" not_log
SetEnvIf Request_URI ".png$" not_log
SetEnvIf Request_URI ".bmp$" not_log
SetEnvIf Request_URI ".css$" not_log
SetEnvIf Request_URI ".swf$" not_log
CustomLog "|/usr/local/apache2/bin/rotatelogs /usr/local/apache2/logs/okkks.tistory.com-access-%y%m%d_log 86400 +540" combined env=!not_log
ErrorDocument 403 /
ErrorDocument 404 /
</VirtualHost>
apache 재시작
]# service httpd restart
[확인]
image가 있는 웹 화면을 불러온 후 access_log 파일의 내용을 확인한다.