From 17c5d74612b2e7ade114e5b8992e98b88d3f7ae0 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sun, 29 Mar 2009 21:18:29 +0200 Subject: [PATCH] lighttpd: Add configuration for ninniach.nl. --- etc/lighttpd/vhosts/ninniach-nl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 etc/lighttpd/vhosts/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", + )) + ) +} -- 2.30.2