Add a map queue that points at cgimap and direct map calls to it.

This commit is contained in:
Tom Hughes 2010-02-07 11:05:10 +00:00
parent a7ac1d9c9e
commit b7d954be44

View file

@ -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" )
)
)