X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=etc%2Flighttpd%2Fvhosts%2Fstderr-nl;h=99b00a77de01bbc5177fbcaaef9eba017a1dcfd8;hb=bb0c99caa293cfce8dcb8877fe65348dd9b6e60e;hp=eb84556e2a6f2be0270ebd53e25c10f89a7da0ce;hpb=466af543e9f574873cef15c4e65e058b49f7cd85;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index eb84556..99b00a7 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -19,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$" { @@ -97,4 +108,9 @@ $HTTP["host"] =~ ".stderr.nl$" { # 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" + } }