lighttpd/stderr.nl: Enable dirlistings for apt.stderr.nl.
[matthijs/servers/drsnuggles.git] / etc / lighttpd / vhosts / stderr-nl
index 1b55f09546710d7ae7e45411e9203a99d669d025..99b00a77de01bbc5177fbcaaef9eba017a1dcfd8 100644 (file)
@@ -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$" {
@@ -92,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"
+       }
 }