X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=etc%2Flighttpd%2Fvhosts%2Fstderr-nl;h=2012e8b129e09195f24849cb46c26f325d14cfdd;hb=6553ae6d6ff03ed0b7ac4d3c9144371fe0a7616a;hp=33fa8553f6a46615193b69c7da2a3aac4deec119;hpb=1ebb6abc1a88846af356f7450e102c541af572fd;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index 33fa855..2012e8b 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -23,21 +23,30 @@ $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$" { - alias.url += ("/ldap" => "/usr/share/phpldapadmin/htdocs") + alias.url += ("/ldap" => "/usr/share/phpldapadmin-patched/htdocs") } $HTTP["host"] =~ "^www.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", + # )) + #) } }