1
0

LND's verrpc should also be exposed via nginx (#720)

* LND's verrpc should also be exposed via nginx

* add walletrpc too
This commit is contained in:
Gregor Pogačnik
2022-11-16 10:50:06 +01:00
committed by GitHub
parent 0462a375a5
commit 882b50e266

View File

@@ -27,7 +27,7 @@
{{ range $container := $.Containers }}
{{ $serviceName := (index $container.Labels "com.docker.compose.service") }}
{{ if (eq $serviceName "lnd_bitcoin") }}
location ~* ^/(lnrpc|routerrpc)\. {
location ~* ^/(lnrpc|routerrpc|verrpc|walletrpc)\. {
grpc_read_timeout 6000s;
grpc_send_timeout 6000s;
grpc_pass grpcs://lnd_bitcoin:10009;