Merge pull request #1640 from knorrium/fix_electrum_tls_enabled_var

This commit is contained in:
wiz 2022-05-13 03:12:05 +09:00 committed by GitHub
commit e63aaedbc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ Corresponding `docker-compose.yml` overrides:
environment: environment:
ELECTRUM_HOST: "" ELECTRUM_HOST: ""
ELECTRUM_PORT: "" ELECTRUM_PORT: ""
ELECTRUM_TLS: "" ELECTRUM_TLS_ENABLED: ""
... ...
``` ```

View File

@ -28,7 +28,7 @@ __CORE_RPC_PASSWORD__=${CORE_RPC_PASSWORD:=mempool}
# ELECTRUM # ELECTRUM
__ELECTRUM_HOST__=${ELECTRUM_HOST:=127.0.0.1} __ELECTRUM_HOST__=${ELECTRUM_HOST:=127.0.0.1}
__ELECTRUM_PORT__=${ELECTRUM_PORT:=50002} __ELECTRUM_PORT__=${ELECTRUM_PORT:=50002}
__ELECTRUM_TLS_ENABLED__=${ELECTRUM_TLS:=false} __ELECTRUM_TLS_ENABLED__=${ELECTRUM_TLS_ENABLED:=false}
# ESPLORA # ESPLORA
__ESPLORA_REST_API_URL__=${ESPLORA_REST_API_URL:=http://127.0.0.1:3000} __ESPLORA_REST_API_URL__=${ESPLORA_REST_API_URL:=http://127.0.0.1:3000}