feat: 添加镜像头像插件并更新网页样式

refactor(web): 重构网页设计风格和布局
fix(jrcd): 修正群组ID检查条件
chore: 更新.gitignore文件配置
This commit is contained in:
2026-02-27 13:03:22 +08:00
parent ae9c362a65
commit 29c2481627
5 changed files with 479 additions and 256 deletions

49
config.toml Normal file
View File

@@ -0,0 +1,49 @@
# NeoBot 配置文件示例
# 复制此文件并重命名为 config.toml 以使用
# NapCat WebSocket 配置
[napcat_ws]
uri = "ws://114.66.61.199:3001"
# WebSocket 连接地址
token = "KoIAF.mcEHzxrPYF"
# 重连间隔(秒)
reconnect_interval = 5
# Bot 基础配置
[bot]
# 命令前缀列表
command = ["/"]
# 是否忽略自己的消息
ignore_self_message = true
# 权限不足时的消息
permission_denied_message = "权限不足,需要 {permission_name} 权限"
# Redis 配置
[redis]
# Redis 主机地址
host = "101.36.126.55"
# Redis 端口
port = 6379
# Redis 数据库编号
db = 0
# Redis 密码
password = "redis_5fCmnE"
# Docker 配置
[docker]
# Docker 基础 URL可选
base_url = "tcp://101.36.126.55:2376"
# 沙箱镜像名称
sandbox_image = "sanbox:latest"
# 超时时间(秒)
timeout = 10
# 并发限制
concurrency_limit = 5
# 是否验证 TLS
tls_verify = true
# CA 证书路径(可选)
ca_cert_path = "ca/ca.pem"
# 客户端证书路径(可选)
client_cert_path = "ca/cert.pem"
# 客户端密钥路径(可选)
client_key_path = "ca/key.pem"