raise upload size cap to ~1.86 GB and nginx timeouts to 1200s

Raise RequestSizeLimit/MultipartBodyLengthLimit on upload+replace-audio,
MaxUploadBytes in BatchUpload/BatchEdit, and DefaultResponseTimeoutSeconds to
1200s. Add client_max_body_size 2000m and proxy_read/send_timeout 1200s to the
nginx manager/public confs.
This commit is contained in:
daniel-c-harvey
2026-06-19 15:02:49 -04:00
parent 297805b5a8
commit 3b9ca700c9
7 changed files with 37 additions and 15 deletions
+6
View File
@@ -15,5 +15,11 @@ server {
# WebSocket support (Blazor Server SignalR circuits + WASM interop)
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
# Blazor Server SignalR circuits can be long-lived. Raise timeouts above the 60 s
# nginx default so idle-but-active circuits (e.g. during audio streaming) are not
# silently dropped.
proxy_read_timeout 1200s;
proxy_send_timeout 1200s;
}
}