Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As prescribed by Yahoo!, gzip'ng files would make your websites load faster. The problem? I don't know how :p

share|improve this question
Do you have a reference for Yahoo saying that gziping files will make websites load faster? Generally speaking, web browsers can't load pages or images that are gzipped, except to download them to your computer. – Ian Varley Nov 17 '08 at 6:05
That's not true: en.wikipedia.org/wiki/Gzip#Other_uses – Jim Puls Nov 17 '08 at 6:33
1  

7 Answers

up vote 8 down vote accepted

http://www.webcodingtech.com/php/gzip-compression.php

Or if you have Apache, try http://www.askapache.com/htaccess/apache-speed-compression.html

Some hosting services have an option in the control panel. It's not always possible, though, so if you're having difficulty, post back with more details about your platform.

share|improve this answer

If you are running Java Tomcat then you set a few properties on your Connector ( in conf/server.xml ).

Specifically you set:

  1. compressableMimeType ( what types to compress )
  2. compression ( off | on | )
  3. noCompressionUserAgents ( if you don't want certain agents to receive gzip, list them here )

Here's the tomcat documentation which discusses this: http://tomcat.apache.org/tomcat-5.5-doc/config/http.html

share|improve this answer

Edit your httpd.conf file.

Add this line to load the module:

LoadModule deflate_module modules/mod_deflate.so

Add these lines to actually compress the output:

AddOutputFilterByType DEFLATE text/css text/html application/x-javascript application/javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
share|improve this answer

Jetty will look for gzip'd versions of static files, as well as it has a GzipFilter for dynamic content.

You could probably pull the GzipFilter over into Tomcat if you wanted more control over compression than just Tomcat's connector-level compression...

http://docs.codehaus.org/display/JETTY/GZIP+Compression

share|improve this answer

http://developer.yahoo.com/performance/rules.html#gzip

This is the reference if any asks me about my reference loading gzipped files

share|improve this answer
don't write that as an answer but edit your question. this is not a forum. – markus Nov 17 '08 at 7:14
sorry about that – Thorpe Obazee May 5 '09 at 2:58

If you are using Lighttpd, there is mod_compress.

share|improve this answer

Seeing how most answers here are almost 5 years old, here's some very current and up to date example references.

For example server configs that enable gzip/deflate type compression for iis, lighthttpd, nginx, and even node see: https://github.com/h5bp/server-configs

For a very good current implementation of Apache mod_deflate see https://github.com/h5bp/html5-boilerplate/blob/master/.htaccess#L156

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.