from: stackoverflow, origin: http://stackoverflow.com/questions/6304738/how-do-i-enable-mod-gzip-on-apache-2-2-17
You can enable it like this in your apache config file, or .htaccess file if enabled
1 2 3 | <ifmodule mod_deflate.c> AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript application/json </ifmodule> |