mod_compress: Lighttpd Gzip Compression To Improve Download and Browsing Speed

by Vivek Gite · 8 comments

Gzip is the most popular and effective compression method. Most modern web browser supports and accepts compressed data transfer. By gziping response time can reduced by 60-70% as compare to normal web page. The end result is faster web site experience for both dial up (they're not dead yet - I've dial up account for backup purpose) and broadband user. I've already written about speeding up Apache 2.x web access or downloads with mod_deflate.

mod_compress for Lighttpd 1.4.xx

Lighttpd 1.4.xx supports gzip compression using mod_compress. This module can reduces the network load and can improve the overall throughput of the webserver. All major http-clients support compression by announcing it in the Accept-Encoding header as follows:

Accept-Encoding: gzip, deflate

If lighttpd sees this header in the request, it can compress the response using one of the methods listed by the client. The web server notifies the web client of this via the Content-Encoding header in the response:

Content-Encoding: gzip

This is used to negotiate the most suitable compression method. Lighttpd support deflate, gzip and bzip2.

Configure mod_compress

Open your lighttpd.conf file:
# vi /etc/lighttpd/lighttpd.conf
Append mod_compress to server.modules directive:
server.modules += ( "mod_compress" )
Setup compress.cache-dir to stored all cached file:
compress.cache-dir = "/tmp/lighttpdcompress/"
Finally, define mimetypes to get compressed. Following will allow to compress javascript, plain text files, css file,xml file etc:

compress.filetype           = ("text/plain","text/css", "text/xml", "text/javascript" )

Save and close the file. Create /tmp/lighttpdcompress/ file:
# mkdir -p /tmp/lighttpdcompress/
# chown lighttpd:lighttpd /tmp/lighttpdcompress/

Restart lighttpd:
# /etc/init.d/lighttpd restart

How do I enable mod_compress per virtual host?

Use conditional $HTTP host directive, for example turn on compression for theos.in:

$HTTP["host"] =~ "theos\.in" {
  compress.cache-dir = "/var/www/cache/theos.in/"
}

PHP dynamic compression

Open php.in file:
# vi /etc/php.ini
To compress dynamic content with PHP please enable following two directives:
zlib.output_compression = On
zlib.output_handler = On

Save and close the file. Restart lighttpd:
# service lighttpd restart

Cleaning cache directory

You need to run a shell script for cleaning out cache directory.

See also:

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 8 comments… read them below or add one }

1 高达00 10.06.08 at 12:41 pm

I use exactly the settings like that, but the mod_compress seems not working with my Ubuntu box, which runs lighttpd 1.4.18 version. Anybody could tell me why?

2 China pictures 10.17.08 at 3:25 am

What is the diference with the deflate mod ?

3 TheCaptain 11.21.08 at 6:53 pm

Yes it doesn’t work for me too..
I’m running CentOS, and have set everything as your instruction but when I check using Online GZIP Tester (http://www.gidnetwork.com/tools/gzip-test.php) it showed that it still uncompressed. Or maybe this tool only works for apache ?

4 wYke 11.29.08 at 9:23 am

hi, I have turned on the zlib compression and handler but it seems the apache load average shoots up to more than 200. how is it supposed to help?

5 Ryan 12.02.08 at 7:03 am

THanks for this :)

Worked perfectly for my server

6 mumuri 12.13.08 at 11:15 pm

There is little spelling mistake “mod_comress “

7 Ulrich 01.10.09 at 11:07 pm

You should use “application/x-javascript”. “text/javascript” doesn’t work for me.

8 Craig M. Rosenblum 03.26.09 at 10:24 am

How do i get this to work under windows? I keep getting errors in the folder specification…Any suggestions?

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post:

Next post: