Add a map queue that points at cgimap and direct map calls to it.
This commit is contained in:
parent
a7ac1d9c9e
commit
b7d954be44
1 changed files with 9 additions and 1 deletions
|
@ -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" )
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue