mempool working
This commit is contained in:
parent
8863f800bf
commit
d82c9afbe5
4 changed files with 788 additions and 10 deletions
33
ansible/services/mempool/mempool_vars.yml
Normal file
33
ansible/services/mempool/mempool_vars.yml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Mempool Configuration Variables
|
||||
|
||||
# Version - Pinned to specific release
|
||||
mempool_version: "v3.2.1"
|
||||
|
||||
# Directories
|
||||
mempool_dir: /opt/mempool
|
||||
mempool_data_dir: "{{ mempool_dir }}/data"
|
||||
mempool_mysql_dir: "{{ mempool_dir }}/mysql"
|
||||
|
||||
# Network - Bitcoin Core/Knots connection (via Tailnet Magic DNS)
|
||||
bitcoin_host: "knots-box"
|
||||
bitcoin_rpc_port: 8332
|
||||
# Note: bitcoin_rpc_user and bitcoin_rpc_password are loaded from infra_secrets.yml
|
||||
|
||||
# Network - Fulcrum Electrum server (via Tailnet Magic DNS)
|
||||
fulcrum_host: "fulcrum-box"
|
||||
fulcrum_port: 50001
|
||||
fulcrum_tls: "false"
|
||||
|
||||
# Mempool network mode
|
||||
mempool_network: "mainnet"
|
||||
|
||||
# Container ports (internal)
|
||||
mempool_frontend_port: 8080
|
||||
mempool_backend_port: 8999
|
||||
|
||||
# MariaDB settings
|
||||
mariadb_database: "mempool"
|
||||
mariadb_user: "mempool"
|
||||
# Note: mariadb_mempool_password is loaded from infra_secrets.yml
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue