enabling GZIP in AEM/dispatcher/web
I am trying to enable GZip so that pages are served in compressed format. I could find only Apache 1.3 specific information in the dispatcher configuration documents as listed below.. Do we have alternative for later version of Apache?
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Compression (Apache 1.3 only)
On Apache 1.3 web servers you can compress the cached documents. Commpression allows Apache to return the document in a compressed form if so requested by the client.
NOTE
Currently only the gzip format is supported.
Only applicable for Apache 1.3.
The following rule caches all documents in compressed form; Apache can return either the uncompressed or the compressed form to the client:
/rules
{
/rulelabel { /glob "*" /type "allow" /compress "gzip" }
}
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Thanks,
Anil
