0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin-Website.git synced 2025-04-06 20:24:37 +00:00
Files
2025-03-17 07:55:18 +01:00

1.8 KiB

RCON

RCON is a protocol that allows you to remotely manage the server from a different device. Pumpkin has full support for RCON.

Configuring RCON

enabled: Boolean

:::code-group

[rcon]
enabled = true

:::

address: String

The address and port that RCON should listen to.

:::code-group

[rcon]
enabled = true
address = "0.0.0.0:25575"

:::

password: String

The password to use for RCON authentication.

:::code-group

[rcon]
enabled = true
password = "[your safe password here]"

:::

max_connections: Integer

The max number of RCON connections allowed at a single time. Set this to 0 to disable the limit.

:::code-group

[rcon]
enabled = true
max_connections = 5

:::

Logging

log_logged_successfully: Boolean

Whether successful logins should be logged to console or not.

:::code-group

[rcon.logging]
log_logged_successfully = true

:::

log_wrong_password: Boolean

Whether wrong password attempts should be logged to console or not.

:::code-group

[rcon.logging]
log_logged_successfully = true

:::

log_commands: Boolean

Whether to log commands ran from RCON to console or not.

:::code-group

[rcon.logging]
log_commands = true

:::

log_quit: Boolean

Whether RCON client quit should be logged or not.

:::code-group

[rcon.logging]
log_quit = true

:::

Default Config

By default, RCON is disabled.

:::code-group

[rcon]
enabled = false
address = "0.0.0.0:25575"
password = ""
max_connections = 0

[rcon.logging]
log_logged_successfully = true
log_wrong_password = true
log_commands = true
log_quit = true

:::