You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
972 B
29 lines
972 B
#########################################
|
|
# CONFIGURATION OF NODE JS CONTAINER
|
|
#########################################
|
|
|
|
# API key required for accessing the services provided by the server
|
|
# Keep this API key secret!
|
|
# Provide a value with a high entropy!
|
|
# Type: alphanumeric
|
|
NODE_API_KEY=myApiKey
|
|
|
|
# API key required for accessing the admin/maintenance services provided by the server
|
|
# Keep this Admin key secret!
|
|
# Provide a value with a high entropy!
|
|
# Type: alphanumeric
|
|
NODE_ADMIN_KEY=myAdminKey
|
|
|
|
# Secret used by the server for signing Json Web Token
|
|
# Keep this value secret!
|
|
# Provide a value with a high entropy!
|
|
# Type: alphanumeric
|
|
NODE_JWT_SECRET=myJwtSecret
|
|
|
|
# Indexer or third-party service used for imports and rescans of addresses
|
|
# Values: local_bitcoind | local_indexer | third_party_explorer
|
|
NODE_ACTIVE_INDEXER=local_bitcoind
|
|
|
|
# FEE TYPE USED FOR FEES ESTIMATIONS BY BITCOIND
|
|
# Allowed values are ECONOMICAL or CONSERVATIVE
|
|
NODE_FEE_TYPE=ECONOMICAL
|