Tag Archives: gzip

mod_deflate for faster page load

Just make sure that the Header module is loaded LoadModule headers_module /path/mod_headers.so <IfModule mod_deflate.c> # Insert filter SetOutputFilter DEFLATE # The value must between 1 (less compression) and 9 (more compression). DeflateCompressionLevel 9 # Netscape 4.x has some problems… BrowserMatch … Continue reading

Posted in Apache2 | Tagged , , , | Leave a comment

How to Unzip a .gz File

$ gzip -d compressed_file.gz

Posted in Linux | Tagged , | 1 Comment