From 4644cfae1b8b195c958b48e1481f30a44c3e827b Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 29 Jul 2009 10:54:41 +0200 Subject: [PATCH 1/1] lighttpd: Add configuration for blues-brothers.eu. --- etc/lighttpd/vhosts/blues-brothers-eu | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 etc/lighttpd/vhosts/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" => "" ) +} -- 2.30.2