diff --git a/docs/Reference/CLI/CLI-Syntax.md b/docs/Reference/CLI/CLI-Syntax.md index 015a59585a8..71cf1cab2ce 100644 --- a/docs/Reference/CLI/CLI-Syntax.md +++ b/docs/Reference/CLI/CLI-Syntax.md @@ -2617,6 +2617,34 @@ To allow remote connections, set to `0.0.0.0` In a production environment, ensure you are using a firewall to avoid exposing your node to the internet. +### `rpc-http-max-active-connections` + +=== "Syntax" + + ```bash + --rpc-http-max-active-connections= + ``` + +=== "Command Line" + + ```bash + --rpc-http-max-active-connections=100 + ``` + +=== "Environment Variable" + + ```bash + BESU_RPC_HTTP_MAX_ACTIVE_CONNECTIONS=100 + ``` + +=== "Configuration File" + + ```toml + rpc-http-max-active-connections=100 + ``` + +The maximum number of allowed HTTP JSON-RPC connections. Once this limit is reached, incoming connections are rejected. The default is 80. + ### `rpc-http-port` === "Syntax"