From: Matthijs Kooijman Date: Wed, 29 Jul 2009 08:54:41 +0000 (+0200) Subject: lighttpd: Add configuration for blues-brothers.eu. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;ds=inline;h=4644cfae1b8b195c958b48e1481f30a44c3e827b;hp=6eb6e6ab524fdfaff6f8b65b5bf5017d8b3be116;p=matthijs%2Fservers%2Fdrsnuggles.git lighttpd: Add configuration for blues-brothers.eu. --- diff --git a/etc/lighttpd/vhosts/blues-brothers-eu b/etc/lighttpd/vhosts/blues-brothers-eu new file mode 100644 index 0000000..7343016 --- /dev/null +++ b/etc/lighttpd/vhosts/blues-brothers-eu @@ -0,0 +1,17 @@ +$HTTP["host"] =~ ".blues-brothers.eu$" { + var.site-dir = var.root-dir + "/blues-brothers.eu" + var.site-fcgi-dir = var.fcgi-dir + "/blues-brothers-eu" + + evhost.path-pattern = var.site-dir + "/htdocs/%3/" + accesslog.filename = var.site-dir + "/logs/access.log" + + fastcgi.server = ( + ".php" => + (( + "socket" => var.site-fcgi-dir + "/php", + "broken-scriptfilename" => "enable", + )) + ) + + cgi.assign = ( "cgi" => "" ) +}