From: Tom Hughes Date: Sun, 7 Feb 2010 11:01:48 +0000 (+0000) Subject: Block tilesAtHome and reassign the remaining daemons from that queue X-Git-Tag: live~6368^2~49 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/ed9fdd1d6288c1376bce34791415d9bc5268222a?ds=inline Block tilesAtHome and reassign the remaining daemons from that queue to the main bulkapi queue. --- diff --git a/config/lighttpd.conf b/config/lighttpd.conf index 15b31ca4d..9e8d4affb 100644 --- a/config/lighttpd.conf +++ b/config/lighttpd.conf @@ -52,10 +52,9 @@ $HTTP["useragent"] =~ "Baiduspider" { url.access-deny = ("") } $HTTP["useragent"] =~ "Sosospider+" { url.access-deny = ("") } # -# Rule to block tilesAtHome when somebody decides to queue vast -# number of tiles for rerendering +# Block tilesAtHome # -#$HTTP["useragent"] == "tilesAtHome" { url.access-deny = ("") } +$HTTP["useragent"] == "tilesAtHome" { url.access-deny = ("") } # # Block JOSM revisions 1722-1727 as they have a serious bug that causes @@ -148,10 +147,7 @@ server.document-root = "/home/rails/public" # # Send everything else to the appropriate FastCGI server # -$HTTP["useragent"] =~ "^tilesAtHome" { - server.error-handler-404 = "/dispatch.tah" -} -else $HTTP["url"] =~ "^/trace/[0-9]+/data$" { +$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))$" { @@ -266,8 +262,6 @@ fastcgi.server = ( ( "host" => "10.0.0.10", "port" => 8010, "check-local" => "disable" ), ( "host" => "10.0.0.11", "port" => 8010, "check-local" => "disable" ), ( "host" => "10.0.0.12", "port" => 8010, "check-local" => "disable" ), - ), - ".tah" => ( ( "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" )