Apache不记录指定文件类型日志
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache不记录指定文件类型日志相关的知识,希望对你有一定的参考价值。
Apache不记录指定文件类型日志
[[email protected] logs]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
DocumentRoot "/data/www"
ServerName www.test.com
ServerAlias www.aaa.com
SetEnvIf Request_URI ".*\.gif$" image-request
SetEnvIf Request_URI ".*\.jpg$" image-request
SetEnvIf Request_URI ".*\.png$" image-request
SetEnvIf Request_URI ".*\.bmp$" image-request
SetEnvIf Request_URI ".*\.swf$" image-request
SetEnvIf Request_URI ".*\.js$" image-request
SetEnvIf Request_URI ".*\.css$" image-request
ErrorLog "logs/test.com-error_log"
CustomLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/test.com-access_%Y%m%d_log 86400" combined env=!image-request
<IfModule mod_rewrite.c>
[[email protected] logs]# /usr/local/apache2/bin/apachectl -t 检查是否有错
Syntax OK
[[email protected] logs]# /usr/local/apache2/bin/apachectl restart 重启一下
[[email protected] logs]# ls
access_log dummy-host.example.com-error_log httpd.pid test.com-access_20160316_log
dummy-host.example.com-access_log error_log test.com-access_20160315_log test.com-error_log
[[email protected] logs]# less test.com-access_20160316_log
[2]+ Stopped less test.com-access_20160316_log
本文出自 “mr guo” 博客,请务必保留此出处http://490617581.blog.51cto.com/7223113/1751105
以上是关于Apache不记录指定文件类型日志的主要内容,如果未能解决你的问题,请参考以下文章