citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 5b2c8f3e441e61410a71b4c8ad82ef12d91b51f8
parent 6bf7be3dadd7c0b5c9a6e72dc3edb7fd38d43139
Author: William Casarin <jb55@jb55.com>
Date:   Wed,  5 May 2021 14:03:40 -0700

quiver: switch lightning rpc tunnel to use wg

Diffstat:
Mnix-config/machines/quiver/default.nix | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nix-config/machines/quiver/default.nix b/nix-config/machines/quiver/default.nix @@ -95,7 +95,7 @@ extra: serviceConfig.ExecStart = extra.util.writeBash "lightning-tunnel" '' socket=/home/jb55/.lightning-bitcoin-rpc rm -f $socket - ${pkgs.socat}/bin/socat -d -d UNIX-LISTEN:$socket,reuseaddr,fork TCP:10.147.20.220:7878 + ${pkgs.socat}/bin/socat -d -d UNIX-LISTEN:$socket,reuseaddr,fork TCP:10.100.0.1:7878 ''; }; @@ -107,7 +107,7 @@ extra: serviceConfig.ExecStart = extra.util.writeBash "lightning-testnet-tunnel" '' socket=/home/jb55/.lightning-testnet-rpc rm -f $socket - ${pkgs.socat}/bin/socat -d -d UNIX-LISTEN:$socket,reuseaddr,fork TCP:10.147.20.220:7879 + ${pkgs.socat}/bin/socat -d -d UNIX-LISTEN:$socket,reuseaddr,fork TCP:10.100.0.1:7879 ''; };