X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=etc%2Flighttpd%2Fvhosts%2Fstderr-nl;h=99b00a77de01bbc5177fbcaaef9eba017a1dcfd8;hb=bb0c99caa293cfce8dcb8877fe65348dd9b6e60e;hp=5398ed18feaea8006798ae110572d5a5ee0f2bf7;hpb=56d331bf17b5fc6a53fafd808c129545bbd1b13f;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index 5398ed1..99b00a7 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -3,7 +3,6 @@ $HTTP["host"] =~ ".stderr.nl$" { var.site-fcgi-dir = var.fcgi-dir + "/stderr-nl" evhost.path-pattern = var.site-dir + "/htdocs/%3/" - accesslog.filename = var.site-dir + "/logs/access.log" $HTTP["host"] =~ "git.stderr.nl$" { cgi.assign += ( "gitweb.cgi" => "" ) @@ -20,6 +19,17 @@ $HTTP["host"] =~ ".stderr.nl$" { url.redirect += ("^/gitweb\?p=matthijs/projects/c.*ash\.git" => "/gitweb?p=matthijs/master-project/cλash.git") # Redirect / to gitweb url.redirect += ("^/$" => "/gitweb") + $HTTP["querystring"] =~ "/brevidius/" { + auth.backend = "htpasswd" + auth.backend.htpasswd.userfile = var.site-dir + "/conf/brevidius.user" + auth.require = ( + "/" => ( + "method" => "basic", + "realm" => "Brevidius", + "require" => "valid-user" + ) + ) + } } $HTTP["host"] =~ "hg.stderr.nl$" { @@ -62,7 +72,7 @@ $HTTP["host"] =~ ".stderr.nl$" { url.redirect += ("^/$" => "/Blog/") # Category got renamed url.redirect += ("^/Blog/personal(.*)" => "/Blog/Personal$1") - $HTTP["url"] !~ "^/(Old blog|static)" { + $HTTP["url"] !~ "^/(Old blog|static|stats)" { cgi.assign += ( "blosxom.cgi" => "/usr/local/bin/aclperl" ) alias.url += ( "" => var.site-dir + "/applications/blosxom/blosxom.cgi" ) setenv.add-environment += ( @@ -93,4 +103,14 @@ $HTTP["host"] =~ ".stderr.nl$" { "broken-scriptfilename" => "enable", )) ) + + $HTTP["url"] =~ "^/static/tmp/" { + # Enable dirlistings for /tmp + server.dir-listing = "enable" + } + + $HTTP["host"] =~ "^apt.stderr.nl$" { + # Enable dirlistings for all of apt.stderr.nl + server.dir-listing = "enable" + } }