lighttpd: Move the php fastcgi server down in stderr.nl
[matthijs/servers/drsnuggles.git] / etc / lighttpd / vhosts / stderr-nl
1 $HTTP["host"] =~ ".stderr.nl$" {
2         var.site-dir         = var.root-dir + "/stderr.nl"
3         var.site-fcgi-dir    = var.fcgi-dir + "/stderr-nl"
4
5         evhost.path-pattern  = var.site-dir + "/htdocs/%3/"
6         accesslog.filename   = var.site-dir + "/logs/access.log"
7
8         $HTTP["host"] =~ "git.stderr.nl$" {
9                 cgi.assign += ( "gitweb.cgi" => "" )
10                 # Put this alias in a url conditional, so urls like /gitweb.css won't get alias'd
11                 $HTTP["url"] =~ "^/gitweb(/.*)?$" {
12                         alias.url += ( "/gitweb" => "/usr/lib/cgi-bin/gitweb.cgi" )
13                 }
14                 $HTTP["url"] =~ ".git/" {
15                         alias.url += ( "/" => "/data/vcs/git/" )
16                 }
17         }
18
19         $HTTP["host"] =~ "blues.stderr.nl$" {
20                 auth.backend                   = "htpasswd"
21                 auth.backend.htpasswd.userfile = var.site-dir + "/conf/pandora2009.user"
22
23                 auth.require = ( 
24                         "/" => (
25                                 "method"  => "basic",
26                                 "realm"   => "Blues Brothers",
27                                 "require" => "valid-user"
28                         )
29                 )
30                 # Only publish the pandora trac repos here
31                 url.redirect += ("^/trac/?$" => "/trac/pandora")
32                 fastcgi.server    += ( 
33                         "/trac" => 
34                         ((
35                                 "socket" => var.site-fcgi-dir + "/trac",
36                                 "check-local" => "disable",
37                         ))
38                 )
39         }
40
41         $HTTP["host"] =~ "^drsnuggles.stderr.nl$" {
42                 alias.url += ("/ldap" => "/usr/share/phpldapadmin-patched/htdocs")
43         }
44
45         $HTTP["host"] =~ "^www.stderr.nl$" {
46                 $HTTP["url"] =~ "^/blosxom" {
47                         cgi.assign += ( "blosxom.cgi" => "/usr/local/bin/aclperl" )
48                         alias.url += ( "/blosxom" => var.site-dir + "/applications/blosxom/blosxom.cgi" )
49                         setenv.add-environment += (
50                                 "BLOSXOM_CONFIG_FILE" => var.site-dir + "/conf/blosxom.conf",
51                                 "BLOSXOM_DATA_BASE" => var.site-dir + "/data/blosxom",
52                                 "BLOSXOM_CODE_BASE" => var.site-dir + "/applications/blosxom",
53                                 "BLOSXOM_HTDOCS_URL" =>  "/blog/",
54                         )
55                 }
56                 # Disabled for now, since the only working trac is the pandora trac
57                 #fastcgi.server    += ( 
58                 #       "/trac" => 
59                 #       ((
60                 #               "socket" => var.site-fcgi-dir + "/trac",
61                 #               "check-local" => "disable",
62                 #       ))
63                 #)
64         }
65
66         # Put the php fastcgi server last, so it won't trigger on any urls that
67         # should be handled by other fastcgi servers (for example, viewing a
68         # .php file in trac results in an url /trac/.../foo.php).
69         fastcgi.server    += ( 
70                 ".php" => 
71                 ((
72                         "socket" => var.site-fcgi-dir + "/php",
73                         "broken-scriptfilename" => "enable",
74                 ))
75         )
76 }