server.document-root = "/home/fcgi/data" server.port = 83 server.bind = "0.0.0.0" server.modules = ( "mod_fastcgi", "mod_status", "mod_accesslog", ) #server.errorlog = STDERR accesslog.filename = "/tmp/_access_log" status.status-url = "/" fastcgi.server = ( "/bpo" => ( "ENV" => ( "socket" => "/tmp/lighttpd.fcgieve.bpo.sock", "bin-path" => "/home/eve/bpo.pl", "max-procs" => 10, "check-local" => "disable", "bin-environment" => ( "PERL5LIB" => "/home/eve", ), ), ), "/env/" => ( "ENV" => ( "socket" => "/tmp/lighttpd.fcgieve.env.sock", "bin-path" => var.CWD + "/env.fcgi", "max-procs" => 2, "check-local" => "disable", "bin-environment" => ( "PERL5LIB" => var.CWD, ), ), ), )