X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=etc%2Flighttpd%2Fvhosts%2Fstderr-nl;h=5ece6d92acba79350a3a43270059497c0a8603d2;hb=8f785b5e26be300f48203d9e7d8ea66dace8dc9e;hp=f332a7190eeab7d10e6df6483b5f9e82791d95ac;hpb=8cbae7c2c9aa2d4ed4371113e5900a9adbfa6d5e;p=matthijs%2Fservers%2Fdrsnuggles.git 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", + )) + ) }