您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

irccat.json 525B

12345678910111213141516171819202122232425262728
  1. {
  2. "tcp": {
  3. "listen": ":12345"
  4. },
  5. "http": {
  6. "listen": ":8045",
  7. "tls": false,
  8. "tls_key": "",
  9. "tls_cert": "",
  10. "listeners": {
  11. "grafana": "#channel"
  12. }
  13. },
  14. "irc": {
  15. "server": "irc.example.com:6697",
  16. "tls": true,
  17. "tls_skip_verify": false,
  18. "nick": "irccat",
  19. "realname": "IRCCat",
  20. "identify_pass": "",
  21. "channels": ["#channel"]
  22. },
  23. "commands": {
  24. "auth_channel": "#channel",
  25. "handler": "./examples/command_handler.py",
  26. "max_response_lines": 15
  27. }
  28. }