* Change VitePress config to add locales * Move English documentation into new Directory * Started Dutch translations * Add Translation instructions * Set cleanUrls (Removes .html in URLs) * Ignore typo's for files containing translations * Add Dutch translations * Simplify config structure * Fix main page redirects for Dutch translation * Updated small indent issue --------- Co-authored-by: khalaor-gh <khalaor4@gmail.com>
1.9 KiB
RCON
RCON is een protocol waarmee je de server op afstand kunt beheren vanaf een ander apparaat. Pumpkin heeft volledige ondersteuning voor RCON.
Configureren van RCON
enabled
: Boolean
:::code-group
[rcon]
enabled = true
:::
address
: String
Het adres en de poort waar RCON naar moet luisteren.
:::code-group
[rcon]
enabled = true
address = "0.0.0.0:25575"
:::
password
: String
Het wachtwoord dat gebruikt moet worden voor RCON-authenticatie.
:::code-group
[rcon]
enabled = true
password = "[je veilig wachtwoord hier]"
:::
max_connections
: Integer
Het maximale aantal RCON-verbindingen dat tegelijkertijd is toegestaan. Stel in op 0 om een limiet uit te schakelen.
:::code-group
[rcon]
enabled = true
max_connections = 5
:::
Logging
log_logged_successfully
: Boolean
Of succesvolle logins naar de console moeten worden gelogd of niet.
:::code-group
[rcon.logging]
log_logged_successfully = true
:::
log_wrong_password
: Boolean
Of verkeerde wachtwoordpogingen naar de console moeten worden gelogd of niet.
:::code-group
[rcon.logging]
log_logged_successfully = true
:::
log_commands
: Boolean
Of commando's uitgevoerd vanaf RCON naar de console moeten worden gelogd of niet.
:::code-group
[rcon.logging]
log_commands = true
:::
log_quit
: Boolean
Of het afsluiten van de RCON-client moet worden gelogd of niet.
:::code-group
[rcon.logging]
log_quit = true
:::
Standaard Configuratie
Standaard is RCON uitgeschakeld.
:::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
:::