| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ## 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
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:25551"]
- # Prefered transports for outbound connections
- allowed_transports = ["tcp"]
- localnet = true
- hostlist = "seed/hostlist.tsv"
- ## 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"
|