From 6553ae6d6ff03ed0b7ac4d3c9144371fe0a7616a Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Fri, 3 Apr 2009 13:28:56 +0200 Subject: [PATCH] lighttpd: Update indigetes.stderr.nl to blues. Also point the configuration at the new trac fcgi server. --- etc/lighttpd/vhosts/stderr-nl | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index 22410ff..2012e8b 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -23,17 +23,26 @@ $HTTP["host"] =~ ".stderr.nl$" { } } - $HTTP["host"] =~ "indigetes.stderr.nl$" { + $HTTP["host"] =~ "blues.stderr.nl$" { auth.backend = "htpasswd" - auth.backend.htpasswd.userfile = var.site-dir + "/pandora2008.user" + auth.backend.htpasswd.userfile = var.site-dir + "/conf/pandora2009.user" auth.require = ( "/" => ( "method" => "basic", - "realm" => "Di Indigetes", + "realm" => "Blues Brothers", "require" => "valid-user" ) ) + # Only publish the pandora trac repos here + url.redirect += ("^/trac/?$" => "/trac/pandora") + fastcgi.server += ( + "/trac" => + (( + "socket" => var.site-fcgi-dir + "/trac", + "check-local" => "disable", + )) + ) } $HTTP["host"] =~ "^drsnuggles.stderr.nl$" { @@ -51,5 +60,13 @@ $HTTP["host"] =~ ".stderr.nl$" { "BLOSXOM_HTDOCS_URL" => "/blog/", ) } + # Disabled for now, since the only working trac is the pandora trac + #fastcgi.server += ( + # "/trac" => + # (( + # "socket" => var.site-fcgi-dir + "/trac", + # "check-local" => "disable", + # )) + #) } } -- 2.30.2