ircd_config.toml 731 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ## JSON-RPC listen URL
  2. #rpc_listen="tcp://127.0.0.1:11055"
  3. ## IRC listen URL
  4. #irc_listen="127.0.0.1:11066"
  5. ## Sets Datastore Path
  6. #datastore="~/.config/ircd"
  7. autojoin = ["#dev"]
  8. ## Raft net settings
  9. [net]
  10. ## P2P accept address
  11. #inbound="tls://127.0.0.1:11002"
  12. ## Connection slots
  13. #outbound_connections=5
  14. ## P2P external address
  15. #external_addr="tls://127.0.0.1:11002"
  16. ## Peers to connect to
  17. #peers=["tls://127.0.0.1:11003"]
  18. ## Seed nodes to connect to
  19. #seeds=["tls://127.0.0.1:11001"]
  20. ## these are the default configuration for the p2p network
  21. #manual_attempt_limit=0
  22. #seed_query_timeout_seconds=8
  23. #connect_timeout_seconds=10
  24. #channel_handshake_seconds=4
  25. #channel_heartbeat_seconds=10
  26. [channel."#dev"]
  27. secret = "f00b4r"