From: Matthijs Kooijman Date: Sun, 29 Mar 2009 19:18:29 +0000 (+0200) Subject: lighttpd: Add configuration for ninniach.nl. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=17c5d74612b2e7ade114e5b8992e98b88d3f7ae0;p=matthijs%2Fservers%2Fdrsnuggles.git lighttpd: Add configuration for ninniach.nl. --- diff --git a/etc/lighttpd/vhosts/ninniach-nl b/etc/lighttpd/vhosts/ninniach-nl new file mode 100644 index 0000000..52dbb9c --- /dev/null +++ b/etc/lighttpd/vhosts/ninniach-nl @@ -0,0 +1,15 @@ +$HTTP["host"] =~ ".ninniach.nl$" { + var.site-dir = var.root-dir + "/ninniach.nl" + var.site-fcgi-dir = var.fcgi-dir + "/ninniach-nl" + + 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", + )) + ) +}