Browse Source

Cleanup lnd.conf (#116)

* Cleanup lnd.conf

* Typo

* Remove tor dns
mount-script-check
Mayank Chhabra 5 years ago
committed by GitHub
parent
commit
ee3e7de398
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 35
      templates/lnd-sample.conf

35
templates/lnd-sample.conf

@ -1,64 +1,45 @@
[Application Options] [Application Options]
listen=0.0.0.0:9735 listen=0.0.0.0:9735
rpclisten=0.0.0.0:10009 rpclisten=0.0.0.0:10009
restlisten=0.0.0.0:8080 restlisten=0.0.0.0:8080
maxpendingchannels=3 maxpendingchannels=3
minchansize=10000 minchansize=10000
; 0.9.X keysend functionality
accept-keysend=true accept-keysend=true
; Commented TLS options as they do not seem to work as of v0.10.1-experimental
; Extra TLS
tlsextradomain=lnd
tlsextraip=10.11.1.2 tlsextraip=10.11.1.2
; LND 0.10.X feature so we can add in new hosts and not worry about fiddling with tls files
tlsautorefresh=1 tlsautorefresh=1
; Add external address for TLS
;externalip=externaladdress
; Makes routing faster but have to use images built with experimental tag
[Routing]
routing.assumechanvalid=1
; Default setting currently is neutrino
[Bitcoind] [Bitcoind]
bitcoind.rpchost=10.11.1.1 bitcoind.rpchost=10.11.1.1
bitcoind.rpcuser=<username> bitcoind.rpcuser=<username>
bitcoind.rpcpass=<password> bitcoind.rpcpass=<password>
bitcoind.zmqpubrawblock=tcp://10.11.1.1:28332 bitcoind.zmqpubrawblock=tcp://10.11.1.1:28332
bitcoind.zmqpubrawtx=tcp://10.11.1.1:28333 bitcoind.zmqpubrawtx=tcp://10.11.1.1:28333
bitcoind.estimatemode=ECONOMICAL
[Bitcoin] [Bitcoin]
; If the Bitcoin chain should be active. Atm, only a single chain can be
; active.
bitcoin.active=1 bitcoin.active=1
bitcoin.mainnet=1 bitcoin.mainnet=1
; Use neutrino for now, but maybe it could be permanent and then switch # Default to neutrino as the node is
; to a full node if theres enough space # automatically switched to bitcoind once
; Also use bitcoind if REGTEST is set # IBD is complete
bitcoin.node=neutrino bitcoin.node=neutrino
bitcoin.defaultchanconfs=2 bitcoin.defaultchanconfs=2
; Add neutrino peers
; TODO: umbrel to set up a neutrino peer to support umbrel nodes
[neutrino] [neutrino]
; These are mainnet neutrino peers - should be commented out for testnet # Mainnet neutrino peers that are automatically
# commented if Umbrel is not configured for mainnet
neutrino.addpeer=bb2.breez.technology neutrino.addpeer=bb2.breez.technology
neutrino.addpeer=mainnet1-btcd.zaphq.io neutrino.addpeer=mainnet1-btcd.zaphq.io
neutrino.addpeer=mainnet2-btcd.zaphq.io neutrino.addpeer=mainnet2-btcd.zaphq.io
; These are testnet neutrino peers
# Testnet neutrino peers that are automatically
# uncommented if Umbrel is configured for testnet
;neutrino.addpeer=testnet1-btcd.zaphq.io ;neutrino.addpeer=testnet1-btcd.zaphq.io
;neutrino.addpeer=testnet2-btcd.zaphq.io ;neutrino.addpeer=testnet2-btcd.zaphq.io
[tor] [tor]
tor.active=1 tor.active=1
tor.control=10.11.5.1:29051 tor.control=10.11.5.1:29051
tor.socks=10.11.5.1:29050 tor.socks=10.11.5.1:29050
tor.targetipaddress=10.11.1.2 tor.targetipaddress=10.11.1.2
; TOR Password placeholder for v0.10.0
tor.password=<password> tor.password=<password>
tor.v3=1 tor.v3=1
tor.dns=soa.nodes.lightning.directory:53

Loading…
Cancel
Save