X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a7ac1d9c9e5604655882236d5bf4727b761076c0..e65e41a6942062ff044af0d31c41ca0e554343cc:/config/lighttpd.conf diff --git a/config/lighttpd.conf b/config/lighttpd.conf index 9b0f426b2..e728c6716 100644 --- a/config/lighttpd.conf +++ b/config/lighttpd.conf @@ -154,7 +154,10 @@ server.document-root = "/home/rails/public" $HTTP["url"] =~ "^/trace/[0-9]+/data$" { server.error-handler-404 = "/dispatch.bulkapi" } -else $HTTP["url"] =~ "^/api/0\.6/(map|trackpoints|amf|amf/read|swf/trackpoints|changeset/[0-9]+/(upload|download))$" { +else $HTTP["url"] =~ "^/api/0\.6/map$" { + server.error-handler-404 = "/dispatch.map" +} +else $HTTP["url"] =~ "^/api/0\.6/(trackpoints|amf|amf/read|swf/trackpoints|changeset/[0-9]+/(upload|download))$" { server.error-handler-404 = "/dispatch.bulkapi" } else $HTTP["url"] =~ "^/api/0\.6/.*/(full|history|search|ways)$" { @@ -269,5 +272,10 @@ fastcgi.server = ( ( "host" => "10.0.0.10", "port" => 8011, "check-local" => "disable" ), ( "host" => "10.0.0.11", "port" => 8011, "check-local" => "disable" ), ( "host" => "10.0.0.12", "port" => 8011, "check-local" => "disable" ) + ), + ".map" => ( + ( "host" => "10.0.0.10", "port" => 9000, "check-local" => "disable" ), + ( "host" => "10.0.0.11", "port" => 9000, "check-local" => "disable" ), + ( "host" => "10.0.0.12", "port" => 9000, "check-local" => "disable" ) ) )