lighttpd: Move blog static files to /static.
[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                 dir-listing.activate = "enable"
23
24                 auth.require = ( 
25                         "/" => (
26                                 "method"  => "basic",
27                                 "realm"   => "Blues Brothers",
28                                 "require" => "valid-user"
29                         )
30                 )
31                 # Only publish the pandora trac repos here
32                 url.redirect += ("^/trac/?$" => "/trac/pandora")
33                 $HTTP["url"] =~ "^/trac/.*" {
34                         fastcgi.server    += ( 
35                                 "/trac" => 
36                                 ((
37                                         "socket" => var.site-fcgi-dir + "/trac",
38                                         "check-local" => "disable",
39                                 ))
40                         )
41                 }
42         }
43
44         $HTTP["host"] =~ "^drsnuggles.stderr.nl$" {
45                 alias.url += ("/ldap" => "/usr/share/phpldapadmin-patched/htdocs")
46         }
47
48         $HTTP["host"] =~ "^www.stderr.nl$" {
49                 url.redirect += ("^/$" => "/Blog/")
50                 $HTTP["url"] =~ "^/Blog" {
51                         cgi.assign += ( "blosxom.cgi" => "/usr/local/bin/aclperl" )
52                         alias.url += ( "/Blog" => var.site-dir + "/applications/blosxom/blosxom.cgi" )
53                         setenv.add-environment += (
54                                 "BLOSXOM_CONFIG_FILE" => var.site-dir + "/conf/blosxom.conf",
55                                 "BLOSXOM_DATA_BASE" => var.site-dir + "/data/blosxom",
56                                 "BLOSXOM_CODE_BASE" => var.site-dir + "/applications/blosxom",
57                                 "BLOSXOM_HTDOCS_URL" =>  "/static/",
58                         )
59                 }
60                 # Disabled for now, since the only working trac is the pandora trac
61                 #fastcgi.server    += ( 
62                 #       "/trac" => 
63                 #       ((
64                 #               "socket" => var.site-fcgi-dir + "/trac",
65                 #               "check-local" => "disable",
66                 #       ))
67                 #)
68         }
69
70         # Put the php fastcgi server last, so it won't trigger on any urls that
71         # should be handled by other fastcgi servers (for example, viewing a
72         # .php file in trac results in an url /trac/.../foo.php).
73         fastcgi.server    += ( 
74                 ".php" => 
75                 ((
76                         "socket" => var.site-fcgi-dir + "/php",
77                         "broken-scriptfilename" => "enable",
78                 ))
79         )
80 }