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:
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop














{ 13 comments… read them below or add one }
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?
What is the diference with the deflate mod ?
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 ?
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?
THanks for this :)
Worked perfectly for my server
There is little spelling mistake “mod_comress “
You should use “application/x-javascript”. “text/javascript” doesn’t work for me.
How do i get this to work under windows? I keep getting errors in the folder specification…Any suggestions?
Thank you ! Perfect for me !
when i do chown lighttpd:lighttpd /tmp/lighttpdcompress/
i get chown: lighttpd: Invalid argument
@nerd – use www-data – lighty is working on this user.
# /etc/init.d/lighttpd restart
is a typo
I think you meant
# /etc/rc.d/lighttpd restart
or more portable:
service lighttpd restart
sorry /usr/local/etc/rc.d/lighttpd restart