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

@@ -54,9 +54,9 @@ install_tooling() {
btcpay_expand_variables() {
BTCPAY_CRYPTOS=""
for i in "$BTCPAYGEN_CRYPTO1" "$BTCPAYGEN_CRYPTO2" "$BTCPAYGEN_CRYPTO3" "$BTCPAYGEN_CRYPTO4" "$BTCPAYGEN_CRYPTO5" "$BTCPAYGEN_CRYPTO5" "$BTCPAYGEN_CRYPTO6" "$BTCPAYGEN_CRYPTO7" "$BTCPAYGEN_CRYPTO8"
do
if [ ! -z "$i" ]; then
if [ ! -z "$BTCPAY_CRYPTOS" ]; then
do
if [ ! -z "$i" ]; then
if [ ! -z "$BTCPAY_CRYPTOS" ]; then
BTCPAY_CRYPTOS="$BTCPAY_CRYPTOS;"
fi
BTCPAY_CRYPTOS="$BTCPAY_CRYPTOS$i"
@@ -108,7 +108,8 @@ TOR_RELAY_NICKNAME=$TOR_RELAY_NICKNAME
TOR_RELAY_EMAIL=$TOR_RELAY_EMAIL
EPS_XPUB=$EPS_XPUB
LND_WTCLIENT_SWEEP_FEE=$LND_WTCLIENT_SWEEP_FEE
FIREFLY_HOST=$FIREFLY_HOST" > $BTCPAY_ENV_FILE
FIREFLY_HOST=$FIREFLY_HOST
LIT_PASSWD=$LIT_PASSWD" > $BTCPAY_ENV_FILE
env | grep ^BWT_ >> $BTCPAY_ENV_FILE || true
}