lighttpd: Update indigetes.stderr.nl to blues.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 3 Apr 2009 11:28:56 +0000 (13:28 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 3 Apr 2009 11:28:56 +0000 (13:28 +0200)
Also point the configuration at the new trac fcgi server.

etc/lighttpd/vhosts/stderr-nl

index 22410ffe7d171a64c5e2f5f716b45a380bf95b98..2012e8b129e09195f24849cb46c26f325d14cfdd 100644 (file)
@@ -23,17 +23,26 @@ $HTTP["host"] =~ ".stderr.nl$" {
                }
        }
 
-       $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$" {
@@ -51,5 +60,13 @@ $HTTP["host"] =~ ".stderr.nl$" {
                                "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",
+               #       ))
+               #)
        }
 }