| 
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
SetEnvIf Request_URI "/ruby_counter" counter no_log
SetEnvIf Request_URI "/wcnt" counter no_log
SetEnvIf Request_URI "\.(gif)|(jpg)|(png)$" gazoulog no_log
SetEnvIf Remote_Addr 192.168.0. locallog no_log !counter !gazoulog
SetEnvIf Remote_Addr 127.0.0. locallog no_log !counter !gazoulog
SetEnvIf Remote_Host "comp1$" locallog no_log !counter !gazoulog
SetEnvIf LIMITIP !locallog no_log !counter !gazoulog
CustomLog logs/gazou.log common env=gazoulog
CustomLog logs/local.log common env=locallog
CustomLog logs/counter.log combined env=counter
CustomLog logs/access.log combined env=!no_log
 | 
| 
LogFormat "%h %l %u %t \"%!414r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined    *8
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
SetEnvIf Request_URI "/ruby_counter" counter no_log                      *1
SetEnvIf Request_URI "/wcnt" counter no_log                              *1
SetEnvIf Request_URI "/c_count" no_log                                   *1
SetEnvIf Request_URI "\.(gif)|(jpg)|(png)|(JPG)|(GIF)|(PNG)$" no_log     *2
SetEnvIf Request_URI "/favicon.ico" no_log                               *3
SetEnvIf Remote_Addr 192.168.0. locallog no_log !counter !gazoulog       *4
SetEnvIf Remote_Addr 127.0.0. locallog no_log !counter !gazoulog         *4
SetEnvIf Remote_Host "comp1$" locallog no_log !counter !gazoulog         *4
SetEnvIf LIMITIP limitlog !locallog no_log !counter !gazoulog            *5
SetEnvIf Request_URI "default\.ida" worm no_log                          *6
SetEnvIf Request_URI "cmd\.exe" worm no_log                              *6
SetEnvIf Request_URI "root\.exe" worm no_log                             *6
SetEnvIf Request_URI "NULL\.printer" worm no_log                         *6
SetEnvIf Request_URI "NULL\.IDA" worm no_log                             *6
SetEnvIf Request_URI "_vti_bin" worm no_log                              *6
SetEnvIf Request_URI "MSOffice" worm no_log                              *6
SetEnvIf Request_URI "scripts" worm no_log                               *6
CustomLog logs/limit.log common env=limitlog         *5
CustomLog logs/gazou.log common env=gazoulog         *2
#CustomLog logs/local.log common env=locallog        *4
CustomLog logs/counter.log combined env=counter      *1
CustomLog logs/worm.log common env=worm              *6
CustomLog logs/access.log combined env=!no_log       *7
 |