inbound.toml 667 B

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