Adjust nginx config to work with large download/upload snapshots (#1848)

* adjust-nginx

* cleanup

* improve

* streaming
This commit is contained in:
Volodymyr Stoiko
2026-02-18 20:48:57 +02:00
committed by GitHub
parent 1ad61798f6
commit 686c7eba54

View File

@@ -30,8 +30,10 @@ data:
proxy_set_header Authorization $http_authorization;
proxy_pass_header Authorization;
proxy_connect_timeout 4s;
proxy_read_timeout 120s;
proxy_send_timeout 12s;
# Disable buffering for gRPC/Connect streaming
client_max_body_size 0;
proxy_request_buffering off;
proxy_buffering off;
proxy_pass_request_headers on;
}
@@ -86,4 +88,3 @@ data:
root /usr/share/nginx/html;
}
}