接下来,我们打开exe生成的,同文件夹下的 appsettings.json
文件,默认的配置内容如下:
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"SignServerUrl": "https://sign.lagrangecore.org/api/sign/25765",
"MusicSignServerUrl": "",
"Account": {
"Uin": 0,
"Password": "",
"Protocol": "Linux",
"AutoReconnect": true,
"GetOptimumServer": true
},
"Message": {
"IgnoreSelf": true,
"StringPost": false
},
"QrCode": {
"ConsoleCompatibilityMode": false
},
"Implementations": [
{
"Type": "ReverseWebSocket",
"Host": "127.0.0.1",
"Port": 8080,
"Suffix": "/onebot/v11/ws",
"ReconnectInterval": 5000,
"HeartBeatInterval": 5000,
"AccessToken": ""
}
]
}
我们需要修改其中的关于地址、端口、路径部分的内容。
由于 koishi
的 反向ws
配置下,默认配置项为
运行在 127.0.0.1:5140
,且监听路径默认为 /onebot
。
- 所以我们需要修改为:
{
"Type": "ReverseWebSocket",
"Host": "127.0.0.1",
"Port": 5140,
"Suffix": "/onebot",
"ReconnectInterval": 5000,
"HeartBeatInterval": 5000,
"AccessToken": ""
}
其余内容不变,仅修改 Port
和 Suffix
即可。
保存该文件。然后重新运行exe。