lighttpd: Require HTTP auth for Brevidius git repositories.
[matthijs/servers/drsnuggles.git] / etc / lighttpd / vhosts / stderr-nl
index 2d165b35a2482224e5990ff27c3b944ddb354047..fd12de44c5401f904dd9b2315c236b9bfdf1151e 100644 (file)
@@ -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" => "" )
@@ -18,6 +17,19 @@ $HTTP["host"] =~ ".stderr.nl$" {
                # thesis. Use .* instead of λ, since mod_redirect doesn't like
                # the λ for some reason.
                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$" {
@@ -53,14 +65,14 @@ $HTTP["host"] =~ ".stderr.nl$" {
        }
 
        $HTTP["host"] =~ "^drsnuggles.stderr.nl$" {
-               alias.url += ("/ldap" => "/usr/share/phpldapadmin-patched/htdocs")
+               alias.url += ("/ldap" => "/usr/share/phpldapadmin/htdocs")
        }
 
        $HTTP["host"] =~ "^www.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 += (
@@ -91,4 +103,9 @@ $HTTP["host"] =~ ".stderr.nl$" {
                        "broken-scriptfilename" => "enable",
                ))
        )
+
+       $HTTP["url"] =~ "^/static/tmp/" {
+               # Enable dirlistings for /tmp
+               server.dir-listing = "enable"
+       }
 }