It seems to me that the mime types used in the example
configuration aren't ideal. For example
mod_gzip_item_include mime ^text/html$
Should probably be something like
mod_gzip_item_include mime ^text/html(;|$)
Because at least the apache I'm using sends
Content-Type: text/html; charset=ISO-8859-1
And apparently the regexp given matches to the entire
contents of the Content-Type header.
Logged In: YES
user_id=329823
Good point. Think, you're right