mod_concat for lighttpd
Mod_concat is a plugin for the lighttpd web server which allows you to minimize the amount of http requests made to a server. Mod_concat for lighttpd provides the functionality to join multiple files together in a single request.
This plugin is based on mod_concat for Apache which in turn was initially thought of by David Davis in Vox, and reimplemented in perlbal.
Without mod_concat:
<head>
<link rel="stylesheet" href="/css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/css/master.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/css/forms.css" type="text/css" media="screen" />
</head>With lighttpd mod_concat
<head>
<link rel="stylesheet" href="/css/reset.css,master.css,forms.css" type="text/css" media="screen" />
</head>For more information visit