X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=etc%2Flighttpd%2Fvhosts%2Fstderr-nl;h=addedc81b7468461990698f1cd4e817563889f7d;hb=0cfcaed8b5a775e19365bfa591fa2e4e44301d58;hp=bc51b2f9f223fc741584d8803a9293cf4fa3702a;hpb=18531a9fa669675fea9126adabab7d284a1c6be2;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index bc51b2f..addedc8 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -5,15 +5,8 @@ $HTTP["host"] =~ ".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$" { + 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" ) @@ -23,17 +16,32 @@ $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") + $HTTP["url"] =~ "^/trac/.*" { + 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$" { @@ -47,5 +55,24 @@ $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", + # )) + #) } + + # Put the php fastcgi server last, so it won't trigger on any urls that + # should be handled by other fastcgi servers (for example, viewing a + # .php file in trac results in an url /trac/.../foo.php). + fastcgi.server += ( + ".php" => + (( + "socket" => var.site-fcgi-dir + "/php", + "broken-scriptfilename" => "enable", + )) + ) }