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.
30 lines
981 B
30 lines
981 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
|
|
|
|
# Data source used for imports and rescans (bitcoind or OXT)
|
|
# Note: support of local bitcoind is an experimental feature
|
|
# Values: active | inactive
|
|
NODE_IMPORT_FROM_BITCOIND=active
|
|
|
|
# FEE TYPE USED FOR FEES ESTIMATIONS BY BITCOIND
|
|
# Allowed values are ECONOMICAL or CONSERVATIVE
|
|
NODE_FEE_TYPE=ECONOMICAL
|