[Nitro] Running multiple Nitro sites under Lighttpd/FCGI
George Moschovitis
george.moschovitis at gmail.com
Sat Nov 19 06:32:11 EST 2005
Ok,
this is requested by many, so here you go:
# General setup.
server.port = 80
server.bind = "0.0.0.0"
server.modules = ( "mod_rewrite", "mod_fastcgi", "mod_access",
"mod_accesslog", "mod_compress", "mod_proxy" )
server.document-root = "/path/to/sites/www.nitrohq.com/public"
server.pid-file = "/tmp/lighttpd.pid"
#server.event-handler = "freebsd-kqueue"
# www.navel.gr
$HTTP["host"] =~ "navel\.gr$" {
server.document-root = "/path/to/sites/www.navel.gr/public"
server.indexfiles = ( "index.html" )
accesslog.filename = "/path/to/sites/www.navel.gr/log/access.log"
server.errorlog = "/path/to/sites/www.navel.gr/log/error.log"
url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
server.error-handler-404 = "/fcgi.rb"
fastcgi.server = ( ".rb" =>
(
( "min-procs" => 1,
"max-procs" => 5,
"socket" => "/tmp/navel.fcgi.socket",
"bin-path" => "/path/to/sites/www.navel.gr/public/fcgi.rb",
"bin-environment" => ( "NITRO_MODE" => "live" )
)
)
)
}
# www.nitrohq.com
$HTTP["host"] == "nitrohq\.com$" {
server.document-root = "/path/to/sites/www.nitrohq.com/public"
server.indexfiles = ( "index.html" )
accesslog.filename = "/path/to/sites/www.nitrohq.com/log/access.log"
server.errorlog = "/path/to/sites/www.nitrohq.com/log/error.log"
url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
server.error-handler-404 = "/fcgi.rb"
fastcgi.server = ( ".rb" =>
(
( "min-procs" => 1,
"max-procs" => 5,
"socket" => "/tmp/nitrohq.fcgi.socket",
"bin-path" => "/path/to/sites/www.nitrohq.com/public/fcgi.rb",
"bin-environment" => ( "NITRO_MODE" => "live" )
)
)
)
}
# Mime types.
mimetype.assign = (
".rpm" => "application/x-rpm",
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postscript",
".torrent" => "application/x-bittorrent",
".dvi" => "application/x-dvi",
".gz" => "application/x-gzip",
".pac" => "application/x-ns-proxy-autoconfig",
".swf" => "application/x-shockwave-flash",
".tar.gz" => "application/x-tgz",
".tgz" => "application/x-tgz",
".tar" => "application/x-tar",
".zip" => "application/zip",
".mp3" => "audio/mpeg",
".m3u" => "audio/x-mpegurl",
".wma" => "audio/x-ms-wma",
".wax" => "audio/x-ms-wax",
".ogg" => "audio/x-wav",
".wav" => "audio/x-wav",
".gif" => "image/gif",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".png" => "image/png",
".xbm" => "image/x-xbitmap",
".xpm" => "image/x-xpixmap",
".xwd" => "image/x-xwindowdump",
".css" => "text/css",
".html" => "text/html",
".htm" => "text/html",
".js" => "text/javascript",
".asc" => "text/plain",
".c" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".dtd" => "text/xml",
".xml" => "text/xml",
".xul" => "application/vnd.mozilla.xul+xml",
".mpeg" => "video/mpeg",
".mpg" => "video/mpeg",
".mov" => "video/quicktime",
".qt" => "video/quicktime",
".avi" => "video/x-msvideo",
".asf" => "video/x-ms-asf",
".asx" => "video/x-ms-asf",
".wmv" => "video/x-ms-wmv",
".bz2" => "application/x-bzip",
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar"
)
# * George Moschovitis <gm at navel.gr>
# * Anastasios Koutoumanos <ak at navel.gr>
There is a page on the wiki, with more details about nitro+fcgi, check this out!
hope this helps,
George.
--
http://www.gmosx.com
http://www.navel.gr
http://www.nitrohq.com
More information about the Nitro-general
mailing list