$HTTP["host"] =~ ".stderr.nl$" { var.site-dir = var.root-dir + "/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" fastcgi.server = ( ".php" => (( "socket" => var.site-fcgi-dir + "/php", "broken-scriptfilename" => "enable", )) ) $HTTP["host"] =~ "git.stderr.nl$" { # 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$" { auth.backend = "htpasswd" auth.backend.htpasswd.userfile = var.site-dir + "/pandora2008.user" auth.require = ( "/" => ( "method" => "basic", "realm" => "Di Indigetes", "require" => "valid-user" ) ) } $HTTP["host"] =~ "^drsnuggles.stderr.nl$" { alias.url += ("/ldap" => "/usr/share/phpldapadmin/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/", ) } } }