| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- ## IRC listen URL
- irc_listen="tcp://127.0.0.1:22020"
- ## Sets Datastore Path
- datastore = "seed"
- ## List of channels to autojoin for new client connections
- autojoin = ["#dev"]
- ## TLS certificate path if IRC acceptor uses TLS (optional)
- #irc_tls_cert = "/etc/letsencrypt/darkirc/fullchain.pem"
- ## TLS secret key path if IRC acceptor uses TLS (optional)
- #irc_tls_secret = "/etc/letsencrypt/darkirc/privkey.pem"
- # Log to file. Off by default.
- #log = "/tmp/darkirc0.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:8888"
- ## Disabled RPC methods
- #rpc_disabled_methods = ["p2p.get_info"]
- ## P2P net settings
- [net]
- ## Outbound connection slots
- # outbound_connections = 8
- ## Inbound connection slots
- inbound_connections = 8
- localnet = true
- hostlist = "seed/hostlist.tsv"
- # Prefered transports for outbound connections
- active_profiles = ["tcp"]
- [net.profiles."tcp"]
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:25551"]
- ## Seed nodes to connect to
- # seeds = ["tcp://127.0.0.1:25551", "tls://lilith1.dark.fi:25551"]
- #
- # [channel."#dev"]
- # topic = "DarkFi Development HQ"
- # [channel."#test1"]
- # secret = "HoLfk8vXBvNsBZ73e2xRPBZ9vEbnF9FVi4fDdyU9AZLU"
|