Project

General

Profile

Bug #1263 » lighttpd.conf.test

test configuration - jtate, 2007-07-17 17:10

 
server.modules = ( "mod_access",
"mod_alias",
"mod_scgi",
"mod_accesslog",
"mod_redirect",
"mod_staticfile" )

server.port = 8004

#Assume this never uses a trailing slash
server.document-root = "/home/jtate/mercurial/raa-2.1"
var.logbase = server.document-root

#Note that this is required if you wish to run multiple lighttpd processes
server.pid-file = "raa-lighttpd.pid"
server.errorlog = var.logbase + "/lighttpd.error.log"
accesslog.filename = var.logbase + "/lighttpd.access.log"

server.username = "jtate"
server.groupname = "jtate"

server.errorfile-prefix = server.document-root + "/html/"


mimetype.assign = ( ".js" => "text/javascript",
".css" => "text/css",
".png" => "image/png",
".jpg" => "image/jpeg",
".gif" => "image/gif",
".ico" => "image/x-icon"
)

$SERVER["socket"] == ":8004" {
}

scgi.server = (
"/" =>
( "127.0.0.1" =>
(
"host" => "127.0.0.1",
"port" => 4000,
"disable-time" => 2,
"check-local" => "disable"
)
)
)
(3-3/3)