1
0

Upgrade LiT to v0.6.2 (includes bugfix) (#602)

* Upgrade Lightning Terminal to v0.6.2-alpha

Closes btcpayserver/btcpayserver#3459

* Add LIT_PASSWD to .env

* Fix and simplify LiT nginx config

See lightninglabs/lightning-terminal#306.

Fixes btcpayserver/btcpayserver-docker#601

* Mount correct LiT data directory

Fixes btcpayserver/btcpayserver-docker#592
This commit is contained in:
d11n
2022-02-16 14:24:05 +01:00
committed by GitHub
parent febdf5a686
commit 79df28b6ed
5 changed files with 20 additions and 29 deletions

View File

@@ -119,16 +119,16 @@
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-Port 443;
proxy_set_header X-Forwarded-Proto https;
sub_filter_once off;
sub_filter_types *;
sub_filter 'src="/' 'src="/helipad/';
sub_filter 'href="/' 'href="/helipad/';
sub_filter '/image' '/helipad/image';
sub_filter '/pew' '/helipad/pew';
sub_filter '/image' '/helipad/image';
sub_filter '/pew' '/helipad/pew';
sub_filter '/boosts' '/helipad/boosts';
proxy_pass http://helipad:2112/;
@@ -144,15 +144,7 @@
proxy_pass http://lnd_lit:8080/;
}
location ~* ^/lnrpc.Lightning/ {
proxy_pass http://lnd_lit:8080;
}
location ~* ^/looprpc.SwapClient/ {
proxy_pass http://lnd_lit:8080;
}
location ~* ^/poolrpc.Trader/ {
location ~* ^/(ln|loop|pool|lit)rpc\. {
proxy_pass http://lnd_lit:8080;
}
{{ end }}