X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=etc%2Flighttpd%2Fvhosts%2Fstderr-nl;h=edab22b99d32dabc200c26f26b648721d34eb097;hb=31c2947a596fff71cc735cec329f27ba2d67b4be;hp=5ece6d92acba79350a3a43270059497c0a8603d2;hpb=8f785b5e26be300f48203d9e7d8ea66dace8dc9e;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index 5ece6d9..edab22b 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -19,6 +19,7 @@ $HTTP["host"] =~ ".stderr.nl$" { $HTTP["host"] =~ "blues.stderr.nl$" { auth.backend = "htpasswd" auth.backend.htpasswd.userfile = var.site-dir + "/conf/pandora2009.user" + dir-listing.activate = "enable" auth.require = ( "/" => ( @@ -29,13 +30,15 @@ $HTTP["host"] =~ ".stderr.nl$" { ) # 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["url"] =~ "^/trac/.*" { + fastcgi.server += ( + "/trac" => + (( + "socket" => var.site-fcgi-dir + "/trac", + "check-local" => "disable", + )) + ) + } } $HTTP["host"] =~ "^drsnuggles.stderr.nl$" { @@ -43,6 +46,9 @@ $HTTP["host"] =~ ".stderr.nl$" { } $HTTP["host"] =~ "^www.stderr.nl$" { + $HTTP["url"] !~ "^/(blosxom|blog)" { + url.redirect += ("^(.*)$" => "http://katherina.student.utwente.nl/~matthijs/cgi-bin/blosxom$1") + } $HTTP["url"] =~ "^/blosxom" { cgi.assign += ( "blosxom.cgi" => "/usr/local/bin/aclperl" ) alias.url += ( "/blosxom" => var.site-dir + "/applications/blosxom/blosxom.cgi" )