broadcast.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # This is a TOML document. Boom
  2. [broadcast]
  3. debug = true
  4. maxproc = 10
  5. serverTick = "5s"
  6. onlineTick = "10s"
  7. apiHost = "http://api.bilibili.com"
  8. apiToken = "test"
  9. [log]
  10. stdout=true
  11. [http]
  12. addr = "0.0.0.0:7825"
  13. timeout = "1s"
  14. [wardenserver]
  15. addr = "0.0.0.0:7829"
  16. timeout = "1s"
  17. [wardenclient]
  18. dial = "1s"
  19. timeout = "1s"
  20. [discovery]
  21. nodes = ["172.22.33.126:7171"]
  22. key = "6a29f8ed87407c11"
  23. secret = "d3c5a85f5b895a03735b5d20a273bc57"
  24. [tcp]
  25. bind = ["0.0.0.0:7821"]
  26. sndbuf = 2048
  27. rcvbuf = 256
  28. keepalive = false
  29. reader = 1024
  30. readBuf = 1024
  31. readBufSize = 512
  32. writer = 1024
  33. writeBuf = 1024
  34. writeBufSize = 4096
  35. [websocket]
  36. bind = ["0.0.0.0:7822"]
  37. [timer]
  38. timer = 256
  39. timerSize = 2048
  40. [protoSection]
  41. handshakeTimeout = "5s"
  42. writeTimeout = "5s"
  43. svrProto = 80
  44. cliProto = 5
  45. [whitelist]
  46. Whitelist = [123,1,2,3]
  47. WhiteLog = "/tmp/white_list.log"
  48. [bucket]
  49. size = 256
  50. channel = 1024
  51. room = 1024
  52. routineAmount = 128
  53. routineSize = 20
  54. [httpClient]
  55. key = "test"
  56. secret = "test"
  57. dial = "300ms"
  58. timeout = "500ms"
  59. keepAlive = "60s"
  60. [httpClient.breaker]
  61. window = "10s"
  62. sleep = "50ms"
  63. bucket = 10
  64. ratio = 0.5
  65. request = 100