Skip to content

Commit 9892c92

Browse files
committed
doc
1 parent a27815f commit 9892c92

3 files changed

Lines changed: 27 additions & 30 deletions

File tree

document/content/self-host/upgrading/4-15/4150.mdx

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,21 @@ description: 'FastGPT V4.15.0 更新说明'
1414

1515
`fastgpt-app`, `fastgpt-pro` 可增加文件解析并发线程数
1616

17-
```bash
18-
# 文件解析 worker 并发数
17+
```dotenv
18+
# 文件解析 worker 并发数(可选)
1919
PARSE_FILE_WORKERS=10
20-
# 文件解析超时时间(秒)
20+
# 文件解析超时时间(秒)(可选)
2121
PARSE_FILE_TIMEOUT_SECONDS=600
22-
# HTML 转 Markdown worker 并发数
22+
# HTML 转 Markdown worker 并发数(可选)
2323
HTML_TO_MARKDOWN_WORKERS=10
24-
# 文本切块 worker 并发数
24+
# 文本切块 worker 并发数(可选)
2525
TEXT_TO_CHUNKS_WORKERS=10
26-
# 自动同步 mongo 数据库索引, 改成 boolean 字符串值,而不是 0 和 1
26+
# 自动同步 mongo 数据库索引, 改成 boolean 字符串值,而不是 0 和 1(可选)
2727
SYNC_INDEX=true
28+
# 是否启用可信反向代理客户端 IP 校验(可选)
29+
TRUSTED_PROXY_ENABLE=false
30+
# 可信反向代理 IP/CIDR 列表,逗号或空白分隔。仅 TRUSTED_PROXY_ENABLE=true 时生效;仅显式可信代理传入的 X-Forwarded-For/X-Real-IP 会用于客户端 IP 解析(可选)
31+
TRUSTED_PROXY_IPS=
2832
```
2933

3034
## 🚀 新增内容
@@ -36,13 +40,6 @@ SYNC_INDEX=true
3640
5. 增加文件解析/HTML转Markdown/文本切块 worker pool,避免并发太高导致资源耗尽,可通过环境变量调整其 pool 数量。
3741
6. 模型思考配置。
3842

39-
## 环境变量更新
40-
41-
```dotenv
42-
TRUSTED_PROXY_ENABLE=false
43-
TRUSTED_PROXY_IPS=
44-
```
45-
4643
## ⚙️ 优化
4744

4845
1. 增加父子节点选中互斥功能,解决:同时选中父子节点时,移动节点会出现抖动。

document/data/doc-last-modified.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@
145145
"content/openapi/intro.mdx": "2026-04-26T21:08:47+08:00",
146146
"content/openapi/share.en.mdx": "2026-04-26T21:08:47+08:00",
147147
"content/openapi/share.mdx": "2026-04-26T21:08:47+08:00",
148-
"content/self-host/config/env.en.mdx": "2026-04-30T00:20:04+08:00",
149-
"content/self-host/config/env.mdx": "2026-04-30T00:20:04+08:00",
148+
"content/self-host/config/env.en.mdx": "2026-05-06T18:25:24+08:00",
149+
"content/self-host/config/env.mdx": "2026-05-06T18:25:24+08:00",
150150
"content/self-host/config/json.en.mdx": "2026-04-26T21:08:47+08:00",
151151
"content/self-host/config/json.mdx": "2026-04-26T21:08:47+08:00",
152152
"content/self-host/config/model/intro.en.mdx": "2026-04-26T21:08:47+08:00",
@@ -257,7 +257,7 @@
257257
"content/self-host/upgrading/4-14/41481.mdx": "2026-04-26T21:08:47+08:00",
258258
"content/self-host/upgrading/4-14/4149.en.mdx": "2026-04-26T21:08:47+08:00",
259259
"content/self-host/upgrading/4-14/4149.mdx": "2026-04-26T21:08:47+08:00",
260-
"content/self-host/upgrading/4-15/4150.mdx": "2026-05-06T14:03:59+08:00",
260+
"content/self-host/upgrading/4-15/4150.mdx": "2026-05-06T17:12:12+08:00",
261261
"content/self-host/upgrading/outdated/40.en.mdx": "2026-04-26T21:08:47+08:00",
262262
"content/self-host/upgrading/outdated/40.mdx": "2026-04-26T21:08:47+08:00",
263263
"content/self-host/upgrading/outdated/41.en.mdx": "2026-04-26T21:08:47+08:00",
@@ -398,8 +398,8 @@
398398
"content/self-host/upgrading/outdated/499.mdx": "2026-04-26T21:08:47+08:00",
399399
"content/self-host/upgrading/upgrade-intruction.en.mdx": "2026-04-26T21:08:47+08:00",
400400
"content/self-host/upgrading/upgrade-intruction.mdx": "2026-04-26T21:08:47+08:00",
401-
"content/toc.en.mdx": "2026-04-29T23:22:43+08:00",
402-
"content/toc.mdx": "2026-04-29T23:22:43+08:00",
401+
"content/toc.en.mdx": "2026-05-06T18:25:24+08:00",
402+
"content/toc.mdx": "2026-05-06T18:25:24+08:00",
403403
"content/use-cases/app-cases/dalle3.en.mdx": "2026-04-26T21:08:47+08:00",
404404
"content/use-cases/app-cases/dalle3.mdx": "2026-04-26T21:08:47+08:00",
405405
"content/use-cases/app-cases/english_essay_correction_bot.en.mdx": "2026-04-26T21:08:47+08:00",

pnpm-lock.yaml

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)