nodes.lua 544 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Descripttion:节点配置
  3. version:
  4. Author: Neo,Huang
  5. Date: 2022-07-05 13:40:50
  6. LastEditors: Neo,Huang
  7. LastEditTime: 2022-07-05 13:41:07
  8. --]]
  9. local root = {}
  10. -- 网关
  11. root["gate1_1"] = {
  12. -- 游戏服务数据库
  13. ip = "127.0.0.1",
  14. port = 8000,
  15. maxClient = 5000,
  16. nodelay = 1,
  17. protocol = "ws",
  18. weight = 50, -- 权重
  19. wsPort = 8001 -- websocket端口
  20. }
  21. -- 登陆服
  22. root["login1_1"] = {
  23. -- 游戏服务数据库
  24. ip = "0.0.0.0",
  25. port = 8002,
  26. agentCount = 1,
  27. bodyLimit = 8192
  28. }
  29. return root