From f2d093591ebacc950382d98449af71c75ba43eda Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Fri, 17 Aug 2018 09:06:28 +0200 Subject: [PATCH] fix(lnd): disable lnd REST interface on port 8080 Disable the REST interface which by default runs on port 8080 so as to avoid conflicts with users that are using port 8080 for other things. We don't use the REST interface so we don't need to expose it. Fix #674 --- resources/lnd.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lnd.conf b/resources/lnd.conf index 366ad037..c9036c46 100644 --- a/resources/lnd.conf +++ b/resources/lnd.conf @@ -84,6 +84,7 @@ ; restlisten=localhost:443 ; On an Unix socket: ; restlisten=unix:///var/run/lnd-restlistener.sock +restlisten=0 ; Adding an external IP will advertise your node to the network. This signals ; that your node is available to accept incoming channels. If you don't wish to