# configuration for bisq service # install in /etc/default/bisq.env # java home, set to latest openjdk 11 from os repository JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 # java memory and remote management options JAVA_OPTS="-Xms4096M -Xmx4096M -XX:+ExitOnOutOfMemoryError -Djava.net.preferIPv4Stack=true" # use external tor (change to -1 for internal tor binary) BISQ_EXTERNAL_TOR_PORT=9051 BISQ_EXTERNAL_TOR_CONTROL_USE_COOKIE=true BISQ_EXTERNAL_TOR_CONTROL_COOKIE_FILE=/var/lib/tor/control_auth_cookie # bitcoin rpc credentials BITCOIN_RPC_USER=__BITCOIN_RPC_USER__ BITCOIN_RPC_PASS=__BITCOIN_RPC_PASS__ # bitcoin p2p settings BITCOIN_P2P_HOST=__BITCOIN_P2P_HOST__ BITCOIN_P2P_PORT=__BITCOIN_P2P_PORT__ # bitcoind rpc ports BITCOIN_RPC_HOST=__BITCOIN_RPC_HOST__ BITCOIN_RPC_PORT=__BITCOIN_RPC_PORT__ BITCOIN_RPC_BLOCKNOTIFY_HOST=__BITCOIN_RPC_BLOCKNOTIFY_HOST__ BITCOIN_RPC_BLOCKNOTIFY_PORT=__BITCOIN_RPC_BLOCKNOTIFY_PORT__ # bisq pathnames BISQ_HOME=__BISQ_HOME__ BISQ_APP_NAME=bisq-seednode BISQ_ENTRYPOINT=seednode/build/app/bin/bisq-seednode BISQ_BASE_CURRENCY=btc_mainnet # bisq node settings BISQ_NODE_PORT=8000 BISQ_MAX_CONNECTIONS=20 BISQ_MAX_MEMORY=4000 # set to true for BSQ seednode BISQ_DAO_FULLNODE=true # set to true for BSQ explorer BISQ_DUMP_BLOCKCHAIN=false # set to true for BSQ markets BISQ_DUMP_STATISTICS=false