mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
4b8c42bedd
* Start working on Fulcrum support * More work on fulcrum/electrs switching * Some fixes * Update FulcrumX * Some fixes * Some FulcrumX fixes * Fixes for apps which use the host network * More fixes for host mode apps * Stop installed apps during update * More work on service managment * Update docker-compose * Update FulcrumX * Fix update channel script * Update manager to 0.0.6 * add network settings for new UI (development) * set DEVICE_HOSTNAME env var * clean up println statements * build: don't run manager & middleware as root * build: update core images * Update some containers * Improve app manager wrapper script * Fix stop script * Add WIP release notes for 0.0.2 * More improvements to the app CLI * More information for c-lightning users * Update dashboard to 0.0.9 * Start cleaning the ports list * More cleanups to the reserved ports list * fix: update lightning container name * Update manager Co-authored-by: Philipp Walter <philippwalter@pm.me>
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# SPDX-FileCopyrightText: 2020 Umbrel. https://getumbrel.com
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Please note: This file can't be changed, any changes will be overwritten the next time you start Citadel.
|
|
|
|
# Tor
|
|
proxy=<tor-proxy-ip>:<tor-proxy-port>
|
|
listen=1
|
|
|
|
# Mainnet/Testnet/Signet/regtest
|
|
<bitcoin-network>=1
|
|
|
|
# Connections
|
|
rpcallowip=<gateway-ip>/16
|
|
rpcallowip=127.0.0.1
|
|
rpcauth=<bitcoin-rpc-auth>
|
|
|
|
# Memory
|
|
dbcache=200
|
|
maxmempool=300
|
|
|
|
# zmq
|
|
zmqpubrawblock=tcp://0.0.0.0:<bitcoin-zmq-rawblock-port>
|
|
zmqpubrawtx=tcp://0.0.0.0:<bitcoin-zmq-rawtx-port>
|
|
zmqpubhashblock=tcp://0.0.0.0:<bitcoin-zmq-hashblock-port>
|
|
zmqpubsequence=tcp://0.0.0.0:<bitcoin-zmq-sequence-port>
|
|
|
|
# Indexes
|
|
txindex=1
|
|
blockfilterindex=1
|
|
|
|
# SPV
|
|
peerbloomfilters=1
|
|
peerblockfilters=1
|
|
|
|
# Bitcoin Knots only, Bitcoin Core simply ignores this
|
|
reindex=auto
|
|
|
|
<external-ip>
|
|
|
|
# NOTE: The options addnode, connect, port, bind, rpcport, rpcbind and wallet
|
|
# only apply to mainnet unless they appear in the appropriate section below.
|
|
<network-section>
|
|
bind=<bitcoin-ip>
|
|
port=<bitcoin-p2p-port>
|
|
rpcport=<bitcoin-rpc-port>
|
|
rpcbind=<bitcoin-ip>
|
|
rpcbind=127.0.0.1
|