X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cfaf23fefee30983bd314e0fdc6b9c9db7a65102..9b3496d2e29006154afb29e549230f8e4f201612:/config/nginx.conf diff --git a/config/nginx.conf b/config/nginx.conf index 1f94ee9d7..7cde7741b 100644 --- a/config/nginx.conf +++ b/config/nginx.conf @@ -7,8 +7,7 @@ worker_processes 2; # Define PID files pid /var/run/nginx.pid; -# Define log files -access_log /var/log/nginx/access.log; +# Define error log error_log /var/log/nginx/error.log; events { @@ -26,6 +25,9 @@ http { keepalive_timeout 65; tcp_nodelay on; + # Define access log + access_log /var/log/nginx/access.log; + # Configure compression (text/html is compressed by default) gzip on; gzip_min_length 1100; @@ -122,9 +124,6 @@ http { # 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/ { @@ -137,15 +136,23 @@ http { } # Placeholder for blocking abuse - location / { - allow all; - } + 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 ^/capabilities$ /api/capabilities; } + # Strip asset tags + location ~ ^/(images|javascripts|openlayers|stylesheets|user/image)/ { + 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") { @@ -181,11 +188,14 @@ http { # Deny old and unknown API versions location ~ ^/api/0\.[0-9]+/ { - deny all; + return 404; } # Handle Special Case Expiry - location ~ ^/(export|openlayers)/ { + location ~ ^/openlayers/ { + expires 7d; + } + location ~ ^/export/embed.html$ { expires 7d; } location ~ ^/(images|javascripts|stylesheets)/ { @@ -203,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 - location ~ /crossdomain.xml$ { - default_type text/x-cross-domain-policy; + location ~ /crossdomain\.xml$ { + types { + text/x-cross-domain-policy xml; + } } } }