taud_config.toml 956 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ## JSON-RPC listen URL
  2. #rpc_listen="tcp://127.0.0.1:23330"
  3. ## Sets Datastore Path
  4. #datastore = "~/.local/darkfi/tau"
  5. ## Current display name
  6. #nickname = "NICKNAME"
  7. ## Workspaces
  8. workspaces = ["darkfi-dev:2bCqQTd8BJgeUzH7JQELZxjQuWS8aCmXZ9C6w7ktNS1v"]
  9. # P2P network settings
  10. [net]
  11. ## P2P accept addresses
  12. #inbound = ["tcp+tls://127.0.0.1:23331"]
  13. ## Connection slots
  14. outbound_connections = 8
  15. ## Addresses we want to advertise to peers
  16. ## These should be reachable externally
  17. #external_addrs = ["tcp+tls://127.0.0.1:23331"]
  18. ## Specific peers to connect to
  19. #peers = ["tcp+tls://127.0.0.1:23331"]
  20. ## Seed nodes to connect to
  21. seeds = [
  22. "tcp+tls://lilith0.dark.fi:5362",
  23. "tcp+tls://lilith1.dark.fi:5362",
  24. ]
  25. # Whitelisted transports for outbound connections
  26. allowed_transports = ["tcp+tls"]
  27. # Enable transport mixing
  28. # Allows mixing transports, e.g. tor+tls:// connecting to tcp+tls://
  29. # By default this is not allowed.
  30. #transport_mixing = false