Increase fastcgi timeout to 300s for bulk api requests.
This commit is contained in:
parent
ebac563f90
commit
10079fbba9
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue