You are only installing the DEFLATE filter on files that end in .html. Try this
instead:
SetEnv gzip-only-text/html 1
SetOutputFilter DEFLATE
Bill
> Hi to all,
>
> I built deflate and jk but deflate seems to compress
> only static (ie no servlet/jsp) contents.
>
> I've used :
>
> Listen x.x.x.x:y
> NameVirtualHost x.x.x.x:y
> <VirtualHost x.x.x.x:y>
>
> ServerName host.domain.tld
> AddOutputFilter DEFLATE html
>
> <Directory /var/tomcat3/webapps/ROOT>
> AllowOverride None
> </Directory>
>
> <Location "/WEB-INF/" >
> AllowOverride None
> Deny from all
> </Directory>
>
> JkMount /servlet/* ajp13
> JkMount /*.jsp ajp13
>
>
> </VirtualHost>
>
|