Merge commit 'origin/template' into www
[matthijs/servers/drsnuggles.git] / etc / lighttpd / vhosts / stderr-nl
index 71089a9d808eb8f21660d9def581b7b645859ec1..f332a7190eeab7d10e6df6483b5f9e82791d95ac 100644 (file)
@@ -13,25 +13,61 @@ $HTTP["host"] =~ ".stderr.nl$" {
                ))
        )
 
-       cgi.assign = ( "cgi" => "" )
-
        $HTTP["host"] =~ "git.stderr.nl$" {
+               cgi.assign += ( "gitweb.cgi" => "" )
                # Put this alias in a url conditional, so urls like /gitweb.css won't get alias'd
                $HTTP["url"] =~ "^/gitweb(/.*)?$" {
                        alias.url += ( "/gitweb" => "/usr/lib/cgi-bin/gitweb.cgi" )
                }
+               $HTTP["url"] =~ ".git/" {
+                       alias.url += ( "/" => "/data/vcs/git/" )
+               }
        }
 
-       $HTTP["host"] =~ "indigetes.stderr.nl$" {
+       $HTTP["host"] =~ "blues.stderr.nl$" {
                auth.backend                   = "htpasswd"
-               auth.backend.htpasswd.userfile = var.site-dir + "/pandora2008.user"
+               auth.backend.htpasswd.userfile = var.site-dir + "/conf/pandora2009.user"
 
                auth.require = ( 
                        "/" => (
                                "method"  => "basic",
-                               "realm"   => "Di Indigetes",
+                               "realm"   => "Blues Brothers",
                                "require" => "valid-user"
                        )
                )
+               # Only publish the pandora trac repos here
+               url.redirect += ("^/trac/?$" => "/trac/pandora")
+               fastcgi.server    += ( 
+                       "/trac" => 
+                       ((
+                               "socket" => var.site-fcgi-dir + "/trac",
+                               "check-local" => "disable",
+                       ))
+               )
+       }
+
+       $HTTP["host"] =~ "^drsnuggles.stderr.nl$" {
+               alias.url += ("/ldap" => "/usr/share/phpldapadmin-patched/htdocs")
+       }
+
+       $HTTP["host"] =~ "^www.stderr.nl$" {
+               $HTTP["url"] =~ "^/blosxom" {
+                       cgi.assign += ( "blosxom.cgi" => "/usr/local/bin/aclperl" )
+                       alias.url += ( "/blosxom" => var.site-dir + "/applications/blosxom/blosxom.cgi" )
+                       setenv.add-environment += (
+                               "BLOSXOM_CONFIG_FILE" => var.site-dir + "/conf/blosxom.conf",
+                               "BLOSXOM_DATA_BASE" => var.site-dir + "/data/blosxom",
+                               "BLOSXOM_CODE_BASE" => var.site-dir + "/applications/blosxom",
+                               "BLOSXOM_HTDOCS_URL" =>  "/blog/",
+                       )
+               }
+               # Disabled for now, since the only working trac is the pandora trac
+               #fastcgi.server    += ( 
+               #       "/trac" => 
+               #       ((
+               #               "socket" => var.site-fcgi-dir + "/trac",
+               #               "check-local" => "disable",
+               #       ))
+               #)
        }
 }