We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4873ce commit d213f3eCopy full SHA for d213f3e
docs/question/nginx-1g-download-fail.mdx
@@ -0,0 +1,7 @@
1
+# 使用 Nginx 反向代理后,下载 1G 以上文件失败?
2
+
3
+修改 Nginx 配置,新增或调整 `proxy_max_temp_file_size` 参数的值(默认 1G),如调整为 10G:
4
5
+```nginx
6
+proxy_max_temp_file_size 10g;
7
+```
sidebars.js
@@ -259,6 +259,11 @@ const sidebars = {
259
type: 'doc',
260
label: '如何运行多个 ZFile 实例?'
261
},
262
+ {
263
+ id: 'question/nginx-1g-download-fail',
264
+ type: 'doc',
265
+ label: '使用 Nginx 反向代理后,下载 1G 以上文件失败?'
266
+ },
267
{
268
id: 'question/nginx-proxy-config',
269
0 commit comments