# -*- mode: apache; coding: utf-8 -*-
#
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

<IfModule mod_deflate.c>
	DeflateFilterNote mod_deflate_ratio
	LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" mod_deflate: %{mod_deflate_ratio}npct." combined_mod_deflate

	CustomLog /var/log/apache2/access.log combined_mod_deflate
</IfModule>
<IfModule !mod_deflate.c>
	CustomLog /var/log/apache2/access.log combined
</IfModule>
