taud_config.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ## This is the tau daemon configuration file.
  2. ## Review it carefully.
  3. ## JSON-RPC listen URL
  4. #rpc_listen="tcp://127.0.0.1:23330"
  5. ## Datastore Path
  6. #datastore = "~/.local/darkfi/taud_db"
  7. ## Current display name
  8. #nickname = "NICKNAME"
  9. ## Workspaces
  10. workspaces = ["darkfi-dev:2bCqQTd8BJgeUzH7JQELZxjQuWS8aCmXZ9C6w7ktNS1v"]
  11. # P2P network settings
  12. [net]
  13. # Path to a configured hostlist for saving known peers
  14. hostlist = "~/.local/darkfi/darkirc/hostlist.tsv"
  15. ## P2P accept addresses
  16. #inbound = ["tcp+tls://0.0.0.0:23331", "tcp+tls://[::]:23331"]
  17. ## Outbound connection slots
  18. outbound_connections = 8
  19. ## Inbound connection slots
  20. inbound_connections = 0
  21. ## Addresses we want to advertise to peers (optional)
  22. ## These should be reachable externally
  23. #external_addrs = ["tcp+tls://my.resolveable.address:23331"]
  24. ## Seed nodes to connect to
  25. seeds = [
  26. "tcp+tls://lilith0.dark.fi:5362",
  27. "tcp+tls://lilith1.dark.fi:5362",
  28. # "tor://rwjgdy7bs4e3eamgltccea7p5yzz3alfi2vps2xefnihurbmpd3b7hqd.onion:5362"
  29. # "tor://f5mldz3utfrj5esn7vy7osa6itusotix6nsjhv4uirshkcvgglb3xdqd.onion:5362"
  30. ]
  31. # Whitelisted transports for outbound connections
  32. allowed_transports = ["tcp+tls"]
  33. #allowed_transports = ["tor"]
  34. # Enable transport mixing
  35. # Allows mixing transports, e.g. tor+tls:// connecting to tcp+tls://
  36. # By default this is not allowed.
  37. transport_mixing = false