39f3774940
统一 sources/templates/channels/rules 列表为分页响应,避免配置增多时全量返回;按钉钉 access_token 限制每分钟发送并在超限时等待下一分钟,降低触发官方封禁风险。 Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
822 B
YAML
36 lines
822 B
YAML
server:
|
|
port: 8080
|
|
admin_key: "admin-sk-change-me"
|
|
|
|
database:
|
|
host: "mysql"
|
|
port: 3306
|
|
user: "root"
|
|
password: "${DB_PASSWORD:-notify}"
|
|
database: "notification"
|
|
|
|
redis:
|
|
host: "redis"
|
|
port: 6379
|
|
password: "XBAG3pjZbYxZpTWA"
|
|
db: 0
|
|
|
|
smtp:
|
|
host: "smtp.mailersend.net"
|
|
port: 587
|
|
user: "MS_hqXDZ6@516886.xyz"
|
|
password: "${SMTP_PASSWORD:-}"
|
|
# MailerSend 要求 from 域名已验证;未验证 516886.xyz 前先用试用域名
|
|
from: "Notification Service <MS_hqXDZ6@516886.xyz>"
|
|
|
|
rate_limit:
|
|
default: 100
|
|
# 钉钉自定义机器人官方上限 20/分钟,超限封 10 分钟;本地默认 18 留余量
|
|
dingtalk_per_min: 18
|
|
|
|
logbull:
|
|
host: "https://log.516886.xyz"
|
|
project_id: "42a3fef0-2fd6-4ce4-80c5-f6bb6ecc2013"
|
|
api_key: "lb_60701971723797ed0374aa3896078fe5"
|
|
log_level: "INFO"
|