ircd_config.toml 700 B

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