Skip to content

Commit d213f3e

Browse files
committed
新增常见问题:使用 Nginx 反向代理后,下载 1G 以上文件失败
1 parent b4873ce commit d213f3e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,11 @@ const sidebars = {
259259
type: 'doc',
260260
label: '如何运行多个 ZFile 实例?'
261261
},
262+
{
263+
id: 'question/nginx-1g-download-fail',
264+
type: 'doc',
265+
label: '使用 Nginx 反向代理后,下载 1G 以上文件失败?'
266+
},
262267
{
263268
id: 'question/nginx-proxy-config',
264269
type: 'doc',

0 commit comments

Comments
 (0)