X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ebac563f90dd1d32e680a47bc03063392fee9ea3..df8cd4a7b2c364864aad0e4d9f56c1a4f4f0e990:/config/nginx.conf diff --git a/config/nginx.conf b/config/nginx.conf index 41fd52d8d..a78e1dc70 100644 --- a/config/nginx.conf +++ b/config/nginx.conf @@ -164,18 +164,21 @@ http { # Handle bulk api requests location ~ ^/api/0\.6/(map|relation|trackpoints|amf|amf/read|swf/trackpoints|trace/[0-9]+/data)$ { + fastcgi_read_timeout 300; fastcgi_pass bulkapi_backend; break; } # Send search requests to the bulk api backend location ~ ^/api/0\.6/.*/search$ { + fastcgi_read_timeout 300; fastcgi_pass bulkapi_backend; break; } # Send requests for full objects to the bulk api backend location ~ ^/api/0\.6/.*/full$ { + fastcgi_read_timeout 300; fastcgi_pass bulkapi_backend; break; }