+#
+# Enable compression of appropriate static content
+#
+compress.filetype = (
+ "application/x-javascript",
+ "application/x-shockwave-flash",
+ "text/css",
+ "text/html",
+ "text/plain"
+)
+
+#
+# Cache compressed content
+#
+compress.cache-dir = "/var/cache/lighttpd"
+
+#
+# Redirect trac and wiki requests to the right places
+#
+url.redirect = (
+ "^/trac/(.*)$" => "http://trac.openstreetmap.org/$1",
+ "^/wiki/(.*)$" => "http://wiki.openstreetmap.org/$1"
+)
+
+#
+# Run anything with a .pl iextension as a CGI script
+#
+cgi.assign = ( ".pl" => "/usr/bin/perl" )
+