mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
# SPDX-FileCopyrightText: 2020 Umbrel. https://getumbrel.com
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# Bind only to "<tor-proxy-ip>" which is the tor IP within the container
|
|
SocksPort <tor-proxy-ip>:<tor-proxy-port>
|
|
ControlPort <tor-proxy-ip>:<tor-control-port>
|
|
|
|
# Citadel Core Services
|
|
|
|
# Dashboard Hidden Service
|
|
HiddenServiceDir /var/lib/tor/web
|
|
HiddenServicePort 80 <nginx-ip>:80
|
|
|
|
# Bitcoin Core P2P Hidden Service
|
|
HiddenServiceDir /var/lib/tor/bitcoin-p2p
|
|
HiddenServicePort <bitcoin-p2p-port> <bitcoin-ip>:<bitcoin-p2p-port>
|
|
|
|
# Bitcoin Core RPC Hidden Service
|
|
HiddenServiceDir /var/lib/tor/bitcoin-rpc
|
|
HiddenServicePort <bitcoin-rpc-port> <bitcoin-ip>:<bitcoin-rpc-port>
|
|
|
|
# Electrum Server (electrs) Hidden Service
|
|
HiddenServiceDir /var/lib/tor/electrum
|
|
HiddenServicePort <electrum-port> <electrum-ip>:<electrum-port>
|
|
|
|
# LND REST Hidden Service
|
|
HiddenServiceDir /var/lib/tor/lnd-rest
|
|
HiddenServicePort <lnd-rest-port> <lnd-ip>:<lnd-rest-port>
|
|
|
|
# LND gRPC Hidden Service
|
|
HiddenServiceDir /var/lib/tor/lnd-grpc
|
|
HiddenServicePort <lnd-grpc-port> <lnd-ip>:<lnd-grpc-port>
|
|
|
|
HashedControlPassword <tor-hashed-password>
|
|
|