]> git.openstreetmap.org Git - rails.git/commitdiff
nginx fixes, including http://api.openstreetmap/0.6/... support
authorGrant Slater <openstreetmap@firefishy.com>
Mon, 20 Apr 2009 18:45:20 +0000 (18:45 +0000)
committerGrant Slater <openstreetmap@firefishy.com>
Mon, 20 Apr 2009 18:45:20 +0000 (18:45 +0000)
config/nginx.conf

index 876f2c2a569748b4574f68a88367173d1c5482c4..ae779854686bafb52270be786e6a0efb7012ec27 100644 (file)
@@ -124,9 +124,6 @@ http {
 
         # Use index.html as the index page
         index index.html;
 
         # Use index.html as the index page
         index index.html;
-    
-        # Include fastcgi configuration
-        include /etc/nginx/fastcgi_params;
 
         # Redirect trac requests for historical reasons
         location /trac/ {
 
         # Redirect trac requests for historical reasons
         location /trac/ {
@@ -142,8 +139,9 @@ http {
         allow all; 
     
         # Map api.openstreetmap/0.n/... to api.openstreetmap/api/0.n/...
         allow all; 
     
         # Map api.openstreetmap/0.n/... to api.openstreetmap/api/0.n/...
-        if ($host ~* api\.(.*)) {
+        if ($host ~* ^api\.) {
             rewrite ^/(0\.[0-9]+)/(.*)$ /api/$1/$2;
             rewrite ^/(0\.[0-9]+)/(.*)$ /api/$1/$2;
+            rewrite ^/capabilities$ /api/capabilities;
         }
     
         # Strip asset tags
         }
     
         # Strip asset tags
@@ -151,6 +149,10 @@ http {
             rewrite ^/(.*)/[0-9]+$ /$1;
         }
 
             rewrite ^/(.*)/[0-9]+$ /$1;
         }
 
+        # Include fastcgi configuration
+        include /etc/nginx/fastcgi_params;
+        fastcgi_param REQUEST_URI $uri;
+
         # Handle tiles@home requests
         location /api/ {
             if ($http_user_agent ~ "^tilesAtHome") {
         # Handle tiles@home requests
         location /api/ {
             if ($http_user_agent ~ "^tilesAtHome") {
@@ -211,10 +213,17 @@ http {
             }
         }
 
             }
         }
 
+        location = /api/capabilities {
+            fastcgi_pass web_backend;
+            break;
+        }
+
         # Set the MIME type for crossdomain.xml policy files
         # or flash will ignore it
         # Set the MIME type for crossdomain.xml policy files
         # or flash will ignore it
-        location ~ /crossdomain.xml$ {
-            default_type text/x-cross-domain-policy;
+        location ~ /crossdomain\.xml {
+                       types {
+                               text/x-cross-domain-policy xml;
+                       }
         }
     }
 }
         }
     }
 }