| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ## IRC listen URL
- irc_listen = "tcp://127.0.0.1:22023"
- ## Sets Datastore Path
- datastore = "darkirc2"
- ## List of channels to autojoin for new client connections
- autojoin = ["#dev", "#test"]
- # Log to file. Off by default.
- #log = "/tmp/darkirc2.log"
- # Set log level. 1 is info (default), 2 is debug, 3 is trace
- #verbose = 2
- ## JSON-RPC settings
- [rpc]
- ## JSON-RPC listen URL
- rpc_listen = "tcp://127.0.0.1:8891"
- ## Disabled RPC methods
- #rpc_disabled_methods = ["p2p.get_info"]
- ## P2P net settings
- [net]
- ## Connection slots
- outbound_connections = 8
- ## Inbound connection slots
- # inbound_connections = 8
- # inbound = ["tcp://127.0.0.1:25553"]
- # external_addrs = ["tcp://127.0.0.1:25553"]
- # peers = ["tcp://127.0.0.1:25552"]
- ## Seed nodes to connect to
- seeds = ["tcp://127.0.0.1:25551"]
- # Prefered transports for outbound connections
- allowed_transports = ["tcp"]
- localnet = true
- hostlist = "darkirc2/hostlist.tsv"
- #
- # [channel."#dev"]
- # topic = "DarkFi Development HQ"
- [channel."#test"]
- secret = "HoLfk8vXBvNsBZ73e2xRPBZ9vEbnF9FVi4fDdyU9AZLU"
- [contact."node1"]
- dm_chacha_public = "BmUo88RJ5TyR7gUWnr6Mk7tqZE5xPuCqJdJV8KWzsagh"
- my_dm_chacha_secret = "JwsF8D2xvr9ff3Z5j1rhUCBL8odhdZR7qvR2qJ1ZV6P"
- #my_dm_chacha_public = "ACaVU2uf4n2cheRHFP7RB9PASLweBJNdp5QJ4PGwVz67"
|