geekai/deploy/conf/config.toml

120 lines
4.6 KiB
TOML
Raw Normal View History

Listen = "0.0.0.0:5678"
ProxyURL = "" # 如 http://127.0.0.1:7777
2023-11-27 07:21:37 +08:00
MysqlDns = "root:12345678@tcp(chatgpt-plus-mysql:3306)/chatgpt_plus?charset=utf8&parseTime=True&loc=Local"
StaticDir = "./static" # 静态资源的目录
StaticUrl = "/static" # 静态资源访问 URL
AesEncryptKey = ""
2024-01-16 15:24:06 +08:00
ImgCdnURL = ""
WeChatBot = false
[Session]
SecretKey = "azyehq3ivunjhbntz78isj00i4hz2mt9xtddysfucxakadq4qbfrt0b7q3lnvg80" # 注意:这个是 JWT Token 授权密钥,生产环境请务必更换
MaxAge = 86400
[Manager]
Username = "admin"
Password = "admin123" # 如果是生产环境的话,这里管理员的密码记得修改
[Redis] # redis 配置信息
2023-11-27 07:21:37 +08:00
Host = "chatgpt-plus-redis"
Port = 6379
2023-11-27 07:21:37 +08:00
Password = "12345678"
DB = 0
[ApiConfig] # 微博热搜,今日头条等函数服务 API 配置,此为第三方插件服务,如需使用请联系作者开通
ApiURL = ""
AppId = ""
Token = ""
[SmsConfig] # 阿里云短信服务配置
AccessKey = ""
AccessSecret = ""
Product = "Dysmsapi"
Domain = "dysmsapi.aliyuncs.com"
Sign = ""
CodeTempId = ""
[OSS] # OSS 配置,用于存储 MJ 绘画图片
Active = "local" # 默认使用本地文件存储引擎
2023-08-21 06:57:04 +08:00
[OSS.Local]
BasePath = "./static/upload" # 本地文件上传根路径
2023-12-12 07:25:36 +08:00
BaseURL = "/static/upload" # 本地上传文件根 URL 如果是线上,则直接设置为 /static/upload 即可
2023-08-21 06:57:04 +08:00
[OSS.Minio]
Endpoint = "" # 如 172.22.11.200:9000
AccessKey = "" # 自己去 Minio 控制台去创建一个 Access Key
AccessSecret = ""
Bucket = "chatgpt-plus" # 替换为你自己创建的 Bucket注意要给 Bucket 设置公开的读权限,否则会出现图片无法显示。
2023-08-21 06:57:04 +08:00
UseSSL = false
Domain = "" # 地址必须是能够通过公网访问的,否则会出现图片无法显示。
2023-09-06 14:37:13 +08:00
[OSS.QiNiu] # 七牛云 OSS 配置
Zone = "z2" # 区域z0华东z1: 华北na0北美as0新加坡
AccessKey = ""
AccessSecret = ""
Bucket = ""
Domain = "" # OSS Bucket 所绑定的域名,如 https://img.r9it.com
2024-01-16 14:38:18 +08:00
[[MjConfigs]] # 原生 MidJourney 配置
Enabled = false
UserToken = ""
BotToken = ""
GuildId = ""
ChanelId = ""
2024-01-07 22:32:59 +08:00
UseCDN = false #是否使用反向代理访问设置为true下面的设置才会生效
DiscordAPI = "https://mj.r9it.com:8001" # discord API 反代地址
DiscordCDN = "https://mj.r9it.com:8002" # mj 图片反代地址
DiscordGateway = "wss://mj.r9it.com:8003" # discord 机器人反代地址
2024-01-16 14:38:18 +08:00
[[MjPlusConfigs]] # MidJourney Plus 配置,建议不要同时配置 MidJourney 和 MidJourney-Plus
Enabled = true
ApiURL = "https://api.chatgpt-plus.net"
ApiKey = ""
NotifyURL = "https://ai.r9it.com/api/mj/notify" # 域名换成你自己的部署域名
2024-01-07 22:32:59 +08:00
[[SdConfigs]]
Enabled = false
ApiURL = ""
ApiKey = ""
Txt2ImgJsonPath = "res/sd/text2img.json"
2023-12-15 09:04:02 +08:00
[XXLConfig] # xxl-job 配置,需要你部署 XXL-JOB 定时任务工具,用来定期清理未支付订单和清理过期 VIP如果你没有启用支付服务则该服务也无需启动
Enabled = false # 是否启用 XXL JOB 服务
2024-01-07 22:32:59 +08:00
ServerAddr = "http://172.22.11.47:8080/xxl-job-admin" # xxl-job-admin 管理地址
ExecutorIp = "172.22.11.47" # 执行器 IP 地址
ExecutorPort = "9999" # 执行器服务端口
AccessToken = "xxl-job-api-token" # 执行器 API 通信 token
RegistryKey = "chatgpt-plus" # 任务注册 key
[AlipayConfig]
Enabled = false # 启用支付宝支付通道
SandBox = false # 是否启用沙盒模式
UserId = "2088721020750581" # 商户ID
AppId = "9021000131658023" # App Id
PrivateKey = "certs/alipay/privateKey.txt" # 应用私钥
PublicKey = "certs/alipay/appPublicCert.crt" # 应用公钥证书
AlipayPublicKey = "certs/alipay/alipayPublicCert.crt" # 支付宝公钥证书
RootCert = "certs/alipay/alipayRootCert.crt" # 支付宝根证书
2024-01-07 22:32:59 +08:00
NotifyURL = "https://ai.r9it.com/api/payment/alipay/notify" # 支付异步回调地址
2023-12-12 07:25:36 +08:00
2024-01-07 22:32:59 +08:00
[HuPiPayConfig]
2023-12-12 07:25:36 +08:00
Enabled = false
Name = "wechat"
2024-01-09 17:16:27 +08:00
AppId = ""
AppSecret = ""
ApiURL = "https://api.xunhupay.com"
2024-01-07 22:32:59 +08:00
NotifyURL = "https://ai.r9it.com/api/payment/hupipay/notify"
[SmtpConfig] # 注意阿里云服务器禁用了25号端口所以如果需要使用邮件功能请别用阿里云服务器
Host = "smtp.163.com"
Port = 25
AppName = "极客学长"
From = "test@163.com" # 发件邮箱人地址
Password = "" #邮箱 stmp 服务授权码
[JPayConfig] # PayJs 支付配置
Enabled = false
Name = "wechat" # 请不要改动
AppId = "" # 商户 ID
PrivateKey = "" # 秘钥
ApiURL = "https://payjs.cn"
2024-01-07 22:32:59 +08:00
NotifyURL = "https://ai.r9it.com/api/payment/payjs/notify" # 异步回调地址,域名改成你自己的