[Answered ]-Connecting to LND Node through a server-running Django Rest API

1๐Ÿ‘

โœ…

I had the same problem, solved it by adding my server endpoint and public ipv4 (where lnd is running) to the lnd.conf file like this:

tlsextraip=127.0.0.1, <public_ipv4>
tlsextradomain=ec2-x-aa-bb-cc.eu-central-1.compute.amazonaws.com

and then stop lnd, delete the tls.cert and start lnd again to generate a new tls.cert. as it is self-signed certificate you should add it to the trusted certificates too.

๐Ÿ‘คPau1aAm7

Leave a comment