Skip to content

Commit 30deb4c

Browse files
committed
docs: update batch downloads
1 parent ae4f152 commit 30deb4c

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

docs/docs/configuration/batch.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ Or download the current folder.
1616
Selecting a folder will also recursively select all files and folders inside it if the user has permission to access them (see [Password Protection](./password.mdx)).
1717
:::
1818

19-
19+
:::info
20+
Some archive unpacker tools (e.g. Windows built-in) may have issues with some large files inside generated ZIP files due to the use of zero-headers. In that case, you can use a more robust tool like [7-Zip](https://www.7-zip.org/) or [WinRAR](https://www.win-rar.com/).
21+
:::
2022

2123
import EnvConfig from "@site/src/components/EnvConfig";
2224

docs/docs/getting-started/reverse-proxy.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ server {
1818
1919
location / {
2020
proxy_pass http://127.0.0.1:8080/;
21+
22+
# Required for large streaming responses (Batch ZIP downloads if enabled)
23+
proxy_http_version 1.1;
24+
proxy_set_header Connection "";
25+
proxy_buffering off;
26+
proxy_max_temp_file_size 0;
27+
proxy_request_buffering off;
28+
proxy_read_timeout 1h;
29+
proxy_send_timeout 1h;
2130
}
2231
2332
ssl_certificate /path/to/cert.pem;

0 commit comments

Comments
 (0)