更新 WebUI 配置,移除 host 和 port 字段,改为从环境变量读取;更新配置模板版本至 7.2.5,并添加相关说明。

This commit is contained in:
墨梓柒
2025-12-20 12:35:15 +08:00
parent c6726005aa
commit a13f605977
4 changed files with 17 additions and 20 deletions

View File

@@ -599,7 +599,10 @@ class TelemetryConfig(ConfigBase):
@dataclass
class WebUIConfig(ConfigBase):
"""WebUI配置类"""
"""WebUI配置类
注意: host 和 port 配置已移至环境变量 WEBUI_HOST 和 WEBUI_PORT
"""
enabled: bool = True
"""是否启用WebUI"""
@@ -607,12 +610,6 @@ class WebUIConfig(ConfigBase):
mode: Literal["development", "production"] = "production"
"""运行模式development(开发) 或 production(生产)"""
host: str = "0.0.0.0"
"""WebUI服务器监听地址"""
port: int = 8001
"""WebUI服务器端口"""
anti_crawler_mode: Literal["false", "strict", "loose", "basic"] = "basic"
"""防爬虫模式false(禁用) / strict(严格) / loose(宽松) / basic(基础-只记录不阻止)"""