Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions docs/Reference/CLI/CLI-Syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<INTEGER>
```

=== "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"
Expand Down