From b7d954be44045bcfc977cc8218885e2116a55551 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 7 Feb 2010 11:05:10 +0000 Subject: [PATCH] Add a map queue that points at cgimap and direct map calls to it. --- config/lighttpd.conf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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" ) ) ) -- 2.43.2