As prescribed by Yahoo!, gzip'ng files would make your websites load faster. The problem? I don't know how :p
|
|
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. |
||||
|
|
|
If you are running Java Tomcat then you set a few properties on your Connector ( in conf/server.xml ). Specifically you set:
Here's the tomcat documentation which discusses this: http://tomcat.apache.org/tomcat-5.5-doc/config/http.html |
|||
|
|
|
Edit your httpd.conf file. Add this line to load the module:
Add these lines to actually compress the output:
|
|||
|
|
|
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://developer.yahoo.com/performance/rules.html#gzip This is the reference if any asks me about my reference loading gzipped files |
|||||
|
|
If you are using Lighttpd, there is mod_compress. |
|||
|
|
|
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 For a very good current implementation of |
|||
|
|
