Files
cid/config.yml
2026-05-15 10:28:17 +08:00

121 lines
3.6 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
server:
address : ":3001"
name: "cid"
workerId: 1
logPath: "resource/log/server"
logStdout: true
errorStack: true
rate:
limit: 200
burst: 300
# Database.
database:
default:
- type: "pgsql"
host: "116.204.74.41"
port: "15432"
user: "postgres"
pass: "Bjang09@686^*^"
name: "cid"
role: "master"
maxIdle: "5"
maxOpen: "20"
maxLifetime: "60s"
charset: "utf8mb4"
debug: true
dryRun: false
createdAt: "created_at"
updatedAt: "updated_at"
deletedAt: "deleted_at"
timeMaintainDisabled: false
# data-engine 数据库配置(用于存放 tencent_image, tencent_video 等送检表)
dataEngine:
- type: "pgsql"
host: "116.204.74.41"
port: "15432"
user: "postgres"
pass: "Bjang09@686^*^"
name: "dataengine"
role: "master"
maxIdle: "5"
maxOpen: "20"
maxLifetime: "60s"
charset: "utf8mb4"
debug: true
dryRun: false
createdAt: "created_at"
updatedAt: "updated_at"
deletedAt: "deleted_at"
timeMaintainDisabled: false
redis:
# 集群模式配置方法
default:
address: 116.204.74.41:6379
db: 0
idleTimeout: "60s" #连接最大空闲时间使用时间字符串例如30s/1m/1d
maxConnLifetime: "90s" #连接最长存活时间使用时间字符串例如30s/1m/1d
waitTimeout: "60s" #等待连接池连接的超时时间使用时间字符串例如30s/1m/1d
dialTimeout: "30s" #TCP连接的超时时间使用时间字符串例如30s/1m/1d
readTimeout: "30s" #TCP的Read操作超时时间使用时间字符串例如30s/1m/1d
writeTimeout: "30s" #TCP的Write操作超时时间使用时间字符串例如30s/1m/1d
maxActive: 100
consul:
address: 116.204.74.41:8500
# pass: jiahui8888
jaeger: #链路追踪
addr: 116.204.74.41:4318
yidun:
# 回调模式开关: true=使用回调模式(需要公网地址), false=使用轮询模式
callback_mode: false
# 视频检测配置
video:
business_id: "YD00256761935486"
secret_id: "f58a38341ca6227014df7c3bf0e6f16f"
secret_key: "526aa631ba5d518aedeb70b5a3b67371"
region: "cn-hangzhou"
protocol: "https"
max_retry_count: 3
# 易盾回调地址(用于接收检测结果推送)
# 替换为实际可访问的地址
callback_url: "http://your-domain.com:3001/yidun/callback/receiveVideo"
# 图片检测配置
image:
business_id: "20acccc525cbc5cb6bed3d8f6f6b2f77"
secret_id: "9a82f90bfec61eb40d1c95605b894817"
secret_key: "f73a78954417a3713c36ec2d14eb2b5f"
region: "cn-hangzhou"
protocol: "https"
max_retry_count: 3
# 易盾回调地址(用于接收检测结果推送)
# 替换为实际可访问的地址
callback_url: "http://your-domain.com:3001/yidun/callback/receiveImage"
# 文本检测配置(如需要请补充)
text:
business_id: "YOUR_TEXT_BUSINESS_ID"
secret_id: "YOUR_TEXT_SECRET_ID"
secret_key: "YOUR_TEXT_SECRET_KEY"
region: "cn-hangzhou"
protocol: "https"
max_retry_count: 3
# 易盾回调地址(用于接收检测结果推送)
# 替换为实际可访问的地址
callback_url: "http://your-domain.com:3001/yidun/callback/receiveText"
# 内容送检定时任务配置
content_check:
# 是否启动定时送检任务true=启动定时任务自动送检false=不启动仅通过API手动送检
scheduler_enabled: false
# 每批处理数量
batch_size: 10
# 是否启用图片检测
image_enabled: false
# 是否启用视频检测
video_enabled: false
# 定时任务执行间隔(秒)
interval_seconds: 30