34 lines
857 B
Bash
34 lines
857 B
Bash
RUST_LOG=info
|
|
# This variable forces the use of color in the logs
|
|
ZEBRA_FORCE_USE_COLOR=1
|
|
LOG_COLOR=true
|
|
|
|
###
|
|
# Configuration Variables
|
|
# These variables are used to configure the zebra node
|
|
# Check the entrypoint.sh script for more details
|
|
###
|
|
|
|
# The config file full path used in the Dockerfile.
|
|
ZEBRA_CONF_PATH=/etc/zebrad/zebrad.toml
|
|
# [network]
|
|
NETWORK=Mainnet
|
|
ZEBRA_LISTEN_ADDR=0.0.0.0
|
|
# [consensus]
|
|
ZEBRA_CHECKPOINT_SYNC=true
|
|
# [state]
|
|
# Set this to change the default cached state directory
|
|
ZEBRA_CACHED_STATE_DIR=/var/cache/zebrad-cache
|
|
LIGHTWALLETD_DATA_DIR=/var/cache/lwd-cache
|
|
# [metrics]
|
|
METRICS_ENDPOINT_ADDR=0.0.0.0
|
|
METRICS_ENDPOINT_PORT=9999
|
|
# [tracing]
|
|
TRACING_ENDPOINT_ADDR=0.0.0.0
|
|
TRACING_ENDPOINT_PORT=3000
|
|
# [rpc]
|
|
RPC_LISTEN_ADDR=0.0.0.0
|
|
# if ${RPC_PORT} is not set, it will use the default value for the current network
|
|
RPC_PORT=8232
|
|
|