We have a JBoss configured in cluster with Apache HTTP+mod_jk as a load balancer. Do we need to configure anything on Apache side in addition to configuring compression in JBoss configuration for connector?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In standard JBoss gzip compression could be enabled for HTTP connector, but not for AJP. AJP connector is used between Apache HTTP server and JBoss. To enable gzip compression on Apache HTTP server side add following lines to mod_jk.conf before </VirtualHost>:
This will enable gzip compression for specified mime types by means of mod_deflate output filter http://httpd.apache.org/docs/2.2/mod/mod_deflate.html. Also uncomment following line in httpd.conf to turn on mod_deflate:
|
|||||
|