From: Matthijs Kooijman Date: Tue, 24 Nov 2009 21:14:24 +0000 (+0100) Subject: lighttpd: Add config for hekjelarp.nl. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=a76d5e9c662f8c0161b2a74c036b8a0be5efff97;p=matthijs%2Fservers%2Fdrsnuggles.git lighttpd: Add config for hekjelarp.nl. --- diff --git a/etc/lighttpd/vhosts/hekjelarp-nl b/etc/lighttpd/vhosts/hekjelarp-nl new file mode 100644 index 0000000..d85d536 --- /dev/null +++ b/etc/lighttpd/vhosts/hekjelarp-nl @@ -0,0 +1,11 @@ +$HTTP["host"] == "hekjelarp.nl" { + url.redirect = ( "(.*)" => "http://www.hekjelarp.nl$1" ) +} + +$HTTP["host"] =~ ".hekjelarp.nl$" { + var.site-dir = var.root-dir + "/hekjelarp.nl" + var.site-fcgi-dir = var.fcgi-dir + "/hekjelarp-nl" + + evhost.path-pattern = var.site-dir + "/htdocs/%3/" + accesslog.filename = var.site-dir + "/logs/access.log" +}