lighttpd: Update SSL configs
[matthijs/servers/drsnuggles.git] / etc / lighttpd / vhosts / stderr-nl
index eb84556e2a6f2be0270ebd53e25c10f89a7da0ce..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$" {
@@ -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"
+       }
 }