| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- ## This is the tau daemon configuration file.
- ## Review it carefully.
- ## JSON-RPC listen URL
- #rpc_listen="tcp://127.0.0.1:23330"
- ## Datastore Path
- #datastore = "~/.local/darkfi/taud_db"
- ## Current display name
- #nickname = "NICKNAME"
- ## Workspaces
- workspaces = ["darkfi-dev:2bCqQTd8BJgeUzH7JQELZxjQuWS8aCmXZ9C6w7ktNS1v"]
- # P2P network settings
- [net]
- # Path to a configured hostlist for saving known peers
- hostlist = "~/.local/darkfi/darkirc/hostlist.tsv"
- ## P2P accept addresses
- #inbound = ["tcp+tls://0.0.0.0:23331", "tcp+tls://[::]:23331"]
- ## Outbound connection slots
- outbound_connections = 8
- ## Inbound connection slots
- inbound_connections = 0
- ## Addresses we want to advertise to peers (optional)
- ## These should be reachable externally
- #external_addrs = ["tcp+tls://my.resolveable.address:23331"]
- ## Seed nodes to connect to
- seeds = [
- "tcp+tls://lilith0.dark.fi:5362",
- "tcp+tls://lilith1.dark.fi:5362",
- # "tor://rwjgdy7bs4e3eamgltccea7p5yzz3alfi2vps2xefnihurbmpd3b7hqd.onion:5362"
- # "tor://f5mldz3utfrj5esn7vy7osa6itusotix6nsjhv4uirshkcvgglb3xdqd.onion:5362"
- ]
- # Whitelisted transports for outbound connections
- allowed_transports = ["tcp+tls"]
- #allowed_transports = ["tor"]
- # Enable transport mixing
- # Allows mixing transports, e.g. tor+tls:// connecting to tcp+tls://
- # By default this is not allowed.
- transport_mixing = false
|