fix: 去除无用参数

This commit is contained in:
shaw
2025-09-25 15:08:04 +08:00
parent 69cf8646e9
commit 79fb5fb072
3 changed files with 0 additions and 58 deletions

View File

@@ -603,23 +603,6 @@ npm run service:status
- 客户端验证失败时会返回403错误并记录详细信息
- 通过日志可以查看实际的User-Agent格式方便配置自定义客户端
### 自定义客户端配置
如需添加自定义客户端,可以修改 `config/config.js` 文件:
```javascript
clientRestrictions: {
predefinedClients: [
// ... 现有客户端配置
{
id: 'my_custom_client',
name: 'My Custom Client',
description: '我的自定义客户端',
userAgentPattern: /^MyClient\/[\d\.]+/i
}
]
}
```
### 日志示例