server.document-root = "/home/fcgi/data" server.port = 82 server.bind = "0.0.0.0" server.modules = ( "mod_fastcgi", "mod_status", "mod_accesslog", ) #server.errorlog = STDERR status.status-url = "/" fastcgi.server = ( "/uri-res/" => ( "ENV" => ( "socket" => "/tmp/lighttpd.fcgi.urires.sock", "bin-path" => "/home/tma/uri-res.pl", "max-procs" => 5, "check-local" => "disable", "bin-environment" => ( "PERL5LIB" => "/home/tma", ), ), ), "/nbid" => ( "ENV" => ( "socket" => "/tmp/lighttpd.fcgi.nbid.sock", "bin-path" => "/home/tma/nbid.pl", "max-procs" => 2, "check-local" => "disable", "bin-environment" => ( "PERL5LIB" => "/home/tma", ), ), ), "/env/" => ( "ENV" => ( "socket" => "/tmp/lighttpd.fcgi.env.sock", "bin-path" => var.CWD + "/env.fcgi", "max-procs" => 2, "check-local" => "disable", "bin-environment" => ( "PERL5LIB" => var.CWD, ), ), ), )