2020-02-07 14:41:35 +01:00
|
|
|
# configuration for bisq service
|
|
|
|
# install in /etc/default/bisq.env
|
2019-11-04 10:25:18 +01:00
|
|
|
|
2023-12-14 16:23:39 +01:00
|
|
|
# java home, set to latest openjdk 11 from os repository
|
|
|
|
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
|
2019-11-04 10:25:18 +01:00
|
|
|
|
|
|
|
# java memory and remote management options
|
2022-05-31 20:22:53 +02:00
|
|
|
JAVA_OPTS="-Xms4096M -Xmx4096M -XX:+ExitOnOutOfMemoryError"
|
2019-11-04 10:25:18 +01:00
|
|
|
|
2022-06-20 17:38:04 +02:00
|
|
|
# use external tor (change to -1 for internal tor binary)
|
|
|
|
BISQ_EXTERNAL_TOR_PORT=9051
|
2024-05-07 06:45:49 +02:00
|
|
|
BISQ_EXTERNAL_TOR_CONTROL_USE_COOKIE=true
|
|
|
|
BISQ_EXTERNAL_TOR_CONTROL_COOKIE_FILE=/var/lib/tor/control_auth_cookie
|
2022-06-20 17:38:04 +02:00
|
|
|
|
2019-11-04 10:25:18 +01:00
|
|
|
# bitcoin rpc credentials
|
2020-02-07 14:41:35 +01:00
|
|
|
BITCOIN_RPC_USER=__BITCOIN_RPC_USER__
|
|
|
|
BITCOIN_RPC_PASS=__BITCOIN_RPC_PASS__
|
2019-11-04 10:25:18 +01:00
|
|
|
|
2020-01-29 11:28:12 +01:00
|
|
|
# bitcoin p2p settings
|
2020-02-07 14:41:35 +01:00
|
|
|
BITCOIN_P2P_HOST=__BITCOIN_P2P_HOST__
|
|
|
|
BITCOIN_P2P_PORT=__BITCOIN_P2P_PORT__
|
2020-01-29 11:28:12 +01:00
|
|
|
|
2019-11-04 10:25:18 +01:00
|
|
|
# bitcoind rpc ports
|
2020-02-07 14:41:35 +01:00
|
|
|
BITCOIN_RPC_HOST=__BITCOIN_RPC_HOST__
|
|
|
|
BITCOIN_RPC_PORT=__BITCOIN_RPC_PORT__
|
2020-01-29 11:28:12 +01:00
|
|
|
BITCOIN_RPC_BLOCKNOTIFY_HOST=127.0.0.1
|
2019-11-04 10:25:18 +01:00
|
|
|
BITCOIN_RPC_BLOCKNOTIFY_PORT=5120
|
|
|
|
|
2020-02-07 14:41:35 +01:00
|
|
|
# bisq pathnames
|
2020-01-04 11:39:56 +01:00
|
|
|
BISQ_HOME=__BISQ_HOME__
|
2019-11-04 10:25:18 +01:00
|
|
|
BISQ_APP_NAME=bisq-seednode
|
2023-12-15 09:44:15 +01:00
|
|
|
BISQ_ENTRYPOINT=seednode/build/app/bin/bisq-seednode
|
2020-01-04 11:39:56 +01:00
|
|
|
BISQ_BASE_CURRENCY=btc_mainnet
|
|
|
|
|
2020-02-07 14:41:35 +01:00
|
|
|
# bisq node settings
|
2019-11-04 10:25:18 +01:00
|
|
|
BISQ_NODE_PORT=8000
|
2020-11-05 12:06:05 +01:00
|
|
|
BISQ_MAX_CONNECTIONS=20
|
2020-01-04 10:28:42 +01:00
|
|
|
BISQ_MAX_MEMORY=4000
|
2019-12-20 13:07:35 +01:00
|
|
|
|
2020-02-07 14:41:35 +01:00
|
|
|
# set to true for BSQ seednode
|
|
|
|
BISQ_DAO_FULLNODE=true
|
|
|
|
|
2019-12-20 13:07:35 +01:00
|
|
|
# set to true for BSQ explorer
|
|
|
|
BISQ_DUMP_BLOCKCHAIN=false
|
2020-02-07 14:41:35 +01:00
|
|
|
|
|
|
|
# set to true for BSQ markets
|
|
|
|
BISQ_DUMP_STATISTICS=false
|