server.document-root = "/var/www/htdocs" server.bind = "127.0.0.1" server.port = 12765 server.username = "lorry" server.groupname = "lorry" server.modules += ("mod_cgi", "mod_fastcgi") mimetype.assign = ( ".html" => "text/html", ".txt" => "text/plain", ".jpg" => "image/jpeg", ".png" => "image/png", ".css" => "text/css" ) $SERVER["socket"] == "127.0.0.1:12765" { server.username = "lorry" server.groupname = "lorry" fastcgi.server = ( "/" => ( "python-fcgi" => ( "socket" => "/run/lighttpd-lorry/lorry-controller-webapp.socket", "bin-path" => "/usr/bin/lorry-controller-webapp --config=/etc/lorry-controller/webapp.conf", "check-local" => "disable", # Pass full request path as PATH_INFO "fix-root-scriptname" => "enable", "max-procs" => 1, ) ) ) }