refactor(Gateway): 修改后台服务器端口并删除多余配置

- 将第一个后台服务器的端口从 10318 修改为 11317
- 删除第二个后台服务器及其相关配置
This commit is contained in:
aixianling
2025-01-10 14:28:23 +08:00
parent 3f0824f283
commit 6882a90654

View File

@@ -11,20 +11,7 @@ GateServer = {
--后台服务器的地址和端口
BackServer = {
Host = "127.0.0.1",
Port = 10318,
},
},
{
LocalService = {
ServerName = "版本验收-分服务器",
Address = "0.0.0.0",
Port = 11319,
MaxSession = 8192, --网关中客户端连接池的最大连接数
SendThreadCount = 20, --数据发送线程池中工作线程数量
},
BackServer = {
Host = "127.0.0.1",
Port = 11318,
Port = 11317,
},
},
}