From: Matthijs Kooijman Date: Thu, 7 May 2009 09:46:58 +0000 (+0200) Subject: lighttpd: Move the php fastcgi server down in stderr.nl X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fservers%2Fdrsnuggles.git;a=commitdiff_plain;h=8f785b5e26be300f48203d9e7d8ea66dace8dc9e lighttpd: Move the php fastcgi server down in stderr.nl This prevents php from triggering on trac urls. --- diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index f332a71..5ece6d9 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -5,14 +5,6 @@ $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 @@ -70,4 +62,15 @@ $HTTP["host"] =~ ".stderr.nl$" { # )) #) } + + # 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", + )) + ) }