location / {
proxy_http_version 1.1;
proxy_set_header Connection "Keep-Alive";
proxy_set_header Proxy-Connection "Keep-Alive";
proxy_pass http://upstream_servers_http;
proxy_buffering on;
}
if ($args ~* timeout=(.+)) {
set $args ?request_timeout=$1;
rewrite ^(.*)$ $1$args break;
}