]> git.openstreetmap.org Git - chef.git/commitdiff
Stop sending single object node requests to cgimap
authorTom Hughes <tom@compton.nu>
Sun, 20 Oct 2013 19:49:28 +0000 (20:49 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 20 Oct 2013 19:50:13 +0000 (20:50 +0100)
cookbooks/web/templates/default/apache.backend.erb

index 0bd6829a1db447a2ae7a57b7540f5bc9e57f7bd6..3de2ec48d864d4d8b155c8b140418b7ea837a827 100644 (file)
@@ -39,8 +39,8 @@
   # Pass supported calls to cgimap
   #
   RewriteRule ^/api/0\.6/map$ - [H=fcgi:127.0.0.1:8000]
-  RewriteCond %{REQUEST_METHOD} =GET
-  RewriteRule ^/api/0\.6/(node|way|relation)/[0-9]+$ - [H=fcgi:127.0.0.1:8000]
+  RewriteCond %{REQUEST_METHOD} ^(HEAD|GET)$
+  RewriteRule ^/api/0\.6/(way|relation)/[0-9]+$ - [H=fcgi:127.0.0.1:8000]
   RewriteRule ^/api/0\.6/(way|relation)/[0-9]+/full$ - [H=fcgi:127.0.0.1:8000]
   RewriteRule ^/api/0\.6/(nodes|ways|relations)$ - [H=fcgi:127.0.0.1:8000]
 </VirtualHost>