Files
chuanqi-server-instance/Gateway/GateWay.txt
aixianling 3fb9285ba4 refactor(Gateway): 更新网关服务端口
- 将 GateWay.txt 文件中的 LocalService 端口从 10317 修改为 11319
2025-01-10 09:29:43 +08:00

30 lines
1.2 KiB
Plaintext
Executable File

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