remove rpc config

This commit is contained in:
MontejoJorge 2024-03-11 21:47:44 +01:00
parent 9a66e57af8
commit 16c636e046
2 changed files with 0 additions and 26 deletions

View File

@ -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 <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. RPC clients connect using rpcuser=<USERNAME>/rpcpassword=<PASSWORD> 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 <ip> 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"
}
],

View File

@ -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