damd1.toml 915 B

123456789101112131415161718192021222324252627282930313233343536
  1. ## damd configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## your daemon properly.
  5. ##
  6. ## The default values are left commented. They can be overridden either by
  7. ## uncommenting, or by using the command-line.
  8. # JSON-RPC settings
  9. [rpc]
  10. # JSON-RPC listen URL
  11. rpc_listen = "tcp://127.0.0.1:44880"
  12. # Disabled RPC methods
  13. #rpc_disabled_methods = ["p2p.get_info"]
  14. # P2P network settings
  15. [net]
  16. # Path to the P2P datastore
  17. p2p_datastore = "damd1"
  18. # Path to a configured hostlist for saving known peers
  19. hostlist = "damd1/p2p_hostlist.tsv"
  20. # Allow localnet hosts
  21. localnet = true
  22. # Whitelisted network transports for outbound connections
  23. active_profiles = ["tcp+tls"]
  24. [net.profiles."tcp+tls"]
  25. # P2P accept addresses the instance listens on for inbound connections
  26. inbound = ["tcp+tls://0.0.0.0:44881"]
  27. # Peer nodes to manually connect to
  28. peers = ["tcp+tls://0.0.0.0:44781"]