2020-02-07 22:41:35 +09:00
|
|
|
# configuration for bisq service
|
|
|
|
# install in /etc/default/bisq.env
|
2019-11-04 18:25:18 +09: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 18:25:18 +09:00
|
|
|
|
|
|
|
# java memory and remote management options
|
2024-05-30 14:00:42 -07:00
|
|
|
JAVA_OPTS="-Xms4096M -Xmx4096M -XX:+ExitOnOutOfMemoryError -Djava.net.preferIPv4Stack=true"
|
2019-11-04 18:25:18 +09: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-06 21:45:49 -07: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 18:25:18 +09:00
|
|
|
# bitcoin rpc credentials
|
2020-02-07 22:41:35 +09:00
|
|
|
BITCOIN_RPC_USER=__BITCOIN_RPC_USER__
|
|
|
|
BITCOIN_RPC_PASS=__BITCOIN_RPC_PASS__
|
2019-11-04 18:25:18 +09:00
|
|
|
|
2020-01-29 19:28:12 +09:00
|
|
|
# bitcoin p2p settings
|
2020-02-07 22:41:35 +09:00
|
|
|
BITCOIN_P2P_HOST=__BITCOIN_P2P_HOST__
|
|
|
|
BITCOIN_P2P_PORT=__BITCOIN_P2P_PORT__
|
2020-01-29 19:28:12 +09:00
|
|
|
|
2019-11-04 18:25:18 +09:00
|
|
|
# bitcoind rpc ports
|
2020-02-07 22:41:35 +09:00
|
|
|
BITCOIN_RPC_HOST=__BITCOIN_RPC_HOST__
|
|
|
|
BITCOIN_RPC_PORT=__BITCOIN_RPC_PORT__
|
2024-05-10 14:55:41 -07:00
|
|
|
BITCOIN_RPC_BLOCKNOTIFY_HOST=__BITCOIN_RPC_BLOCKNOTIFY_HOST__
|
|
|
|
BITCOIN_RPC_BLOCKNOTIFY_PORT=__BITCOIN_RPC_BLOCKNOTIFY_PORT__
|
2019-11-04 18:25:18 +09:00
|
|
|
|
2020-02-07 22:41:35 +09:00
|
|
|
# bisq pathnames
|
2020-01-04 19:39:56 +09:00
|
|
|
BISQ_HOME=__BISQ_HOME__
|
2019-11-04 18:25:18 +09: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 19:39:56 +09:00
|
|
|
BISQ_BASE_CURRENCY=btc_mainnet
|
|
|
|
|
2020-02-07 22:41:35 +09:00
|
|
|
# bisq node settings
|
2019-11-04 18:25:18 +09:00
|
|
|
BISQ_NODE_PORT=8000
|
2020-11-05 20:06:05 +09:00
|
|
|
BISQ_MAX_CONNECTIONS=20
|
2020-01-04 18:28:42 +09:00
|
|
|
BISQ_MAX_MEMORY=4000
|
2019-12-20 21:07:35 +09:00
|
|
|
|
2020-02-07 22:41:35 +09:00
|
|
|
# set to true for BSQ seednode
|
|
|
|
BISQ_DAO_FULLNODE=true
|
|
|
|
|
2019-12-20 21:07:35 +09:00
|
|
|
# set to true for BSQ explorer
|
|
|
|
BISQ_DUMP_BLOCKCHAIN=false
|
2020-02-07 22:41:35 +09:00
|
|
|
|
|
|
|
# set to true for BSQ markets
|
|
|
|
BISQ_DUMP_STATISTICS=false
|