Merge branch 'lnd_tor_changes' into feature/qemu_snapshots
This commit is contained in:
@@ -48,9 +48,13 @@ node.default['lnd']['public_ip'] = '148.251.237.111'
|
||||
node.default['lnd']['public_port'] = '9735'
|
||||
node.default['lnd']['port'] = '9736'
|
||||
node.default['lnd']['minchansize'] = '1000000'
|
||||
node.default['lnd']['basefee'] = '1000'
|
||||
node.default['lnd']['feerate'] = '50'
|
||||
node.default['lnd']['basefee'] = '100'
|
||||
node.default['lnd']['feerate'] = '10'
|
||||
node.default['lnd']['auto_unlock'] = true # requires credentials/lnd data bag item
|
||||
node.default['lnd']['tor'] = {
|
||||
'streamisolation' => 'false',
|
||||
'skip-proxy-for-clearnet-targets' => 'true'
|
||||
}
|
||||
|
||||
node.default['boltz']['repo'] = 'https://github.com/BoltzExchange/boltz-lnd.git'
|
||||
node.default['boltz']['revision'] = 'v1.2.6'
|
||||
|
||||
@@ -61,6 +61,7 @@ template "#{lnd_dir}/lnd.conf" do
|
||||
lnd_basefee: node['lnd']['basefee'],
|
||||
lnd_feerate: node['lnd']['feerate'],
|
||||
lnd_dir: lnd_dir,
|
||||
lnd_tor: node['lnd']['tor'],
|
||||
auto_unlock: node['lnd']['auto_unlock'],
|
||||
tor_enabled: node['bitcoin']['tor_enabled'],
|
||||
bitcoin_datadir: node['bitcoin']['datadir'],
|
||||
|
||||
@@ -30,6 +30,6 @@ bitcoind.zmqpubrawtx=<%= @bitcoin_zmqpubrawtx %>
|
||||
[tor]
|
||||
tor.active=true
|
||||
tor.v3=true
|
||||
tor.streamisolation=false
|
||||
tor.skip-proxy-for-clearnet-targets=true
|
||||
tor.streamisolation=<%= @lnd_tor['streamisolation'] %>
|
||||
tor.skip-proxy-for-clearnet-targets=<%= @lnd_tor['skip-proxy-for-clearnet-targets'] %>
|
||||
<% end %>
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
node.normal['ipfs']['version'] = "0.16.0"
|
||||
node.normal['ipfs']['checksum'] = "40f7fc4f987fb548ccac0f27cdb2b8a9beacd67dfff9367e315dc0a7ced7115c"
|
||||
|
||||
node.default['kosmos-ipfs']['ipfs']['config'] = {
|
||||
# The default gateway is already used by kosmos' hubot (8080)
|
||||
"Addresses.Gateway" => "/ip4/127.0.0.1/tcp/9090",
|
||||
@@ -6,7 +9,7 @@ node.default['kosmos-ipfs']['ipfs']['config'] = {
|
||||
# usage.
|
||||
'Swarm.DisableBandwidthMetrics' => true,
|
||||
# Disable the p2p-circuit relay transport
|
||||
'Swarm.DisableRelay' => true,
|
||||
'Swarm.Transports.Network.Relay' => false,
|
||||
# Number of connections that, when exceeded, will trigger a connection GC
|
||||
# operation
|
||||
'Swarm.ConnMgr.HighWater' => 40,
|
||||
|
||||
Reference in New Issue
Block a user