From 16c636e046d29a4e579216063f1422c52b6cab8e Mon Sep 17 00:00:00 2001 From: MontejoJorge Date: Mon, 11 Mar 2024 21:47:44 +0100 Subject: [PATCH] remove rpc config --- apps/bitcoind/config.json | 22 ---------------------- apps/bitcoind/docker-compose.yml | 4 ---- 2 files changed, 26 deletions(-) diff --git a/apps/bitcoind/config.json b/apps/bitcoind/config.json index 4e9879ac..882ca212 100644 --- a/apps/bitcoind/config.json +++ b/apps/bitcoind/config.json @@ -42,28 +42,6 @@ "hint": "Maintain at most N connections to peers. Default 125.", "required": false, "env_variable": "MAXPEERS" - }, - { - "type": "number", - "label": "Enable RPC Server (0 disabled / 1 enabled)", - "hint": "Accept command line and JSON-RPC commands. Default disabled.", - "regex": "^[01]$", - "required": false, - "env_variable": "RPCSERVER" - }, - { - "type": "text", - "label": "RPC Auth", - "hint": "Username and hashed password for JSON-RPC connections. The field comes in the format: :$. RPC clients connect using rpcuser=/rpcpassword= arguments. You can generate this value at https://jlopp.github.io/bitcoin-core-rpc-auth-generator/.", - "required": false, - "env_variable": "RPCAUTH" - }, - { - "type": "text", - "label": "RPC Allow IP Address", - "hint": "Allow JSON-RPC connections from specified source. Valid for are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24).", - "required": false, - "env_variable": "RPCALLOWIP" } ], diff --git a/apps/bitcoind/docker-compose.yml b/apps/bitcoind/docker-compose.yml index e25016a7..1022c39e 100644 --- a/apps/bitcoind/docker-compose.yml +++ b/apps/bitcoind/docker-compose.yml @@ -18,9 +18,5 @@ services: --maxmempool=${MAX_MEMPOOL:-300} --listen=${LISTEN:-0} --maxconnections=${MAXPEERS:-125} - --server=${RPCSERVER:-0} - --rpcauth=${RPCAUTH} - --rpcallowip=${RPCALLOWIP} - --rpcbind=0.0.0.0 networks: - tipi_main_network \ No newline at end of file