Archive for December, 2008

Enable HTTP compression for Apache HTTP SERVER

By admin - Last updated: Saturday, December 20, 2008

Edit httpd.conf to enable compression for Apache HTTP server
Most likely, it is under
C:\Program Files\Apache Software Foundation\Apache2.x\conf\httpd.conf
Copy and Past the following to the bottom of the file and restart Apache.

LoadModule deflate_module modules/mod_deflate.so

<IfModule mod_deflate.c>
        #DeflateCompressionLevel 9
        <Location />
                AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml
  [...]