* 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.5 KiB
Proxy
Veel servers gebruiken proxies om verbindingen te beheren en spelers over servers te verdelen. Pumpkin ondersteunt de volgende proxy-protocollen:
Tip
Velocity wordt aanbevolen voor de meeste servernetwerken. Velocity is moderner en presteert beter in vergelijking met BungeeCord.
Proxy configureren
enabled
: Boolean
Schakelt ondersteuning voor proxies in.
:::code-group
[proxy]
enabled = true
:::
Velocity
enabled
: Boolean
Of Velocity-ondersteuning is ingeschakeld of niet.
:::code-group
[proxy.velocity]
enabled = true
:::
secret
: String
Het geheim zoals geconfigureerd in Velocity.
:::code-group
[proxy.velocity]
enabled = true
secret = "[proxy secret hier]"
:::
BungeeCord
enabled
: Boolean
Of BungeeCord-ondersteuning is ingeschakeld of niet.
:::code-group
[proxy.bungeecord]
enabled = true
:::
Caution
Zorg ervoor dat de firewall van de server correct is geconfigureerd, aangezien BungeeCord niet kan verifiëren of spelersinformatie van jouw proxy of een bedrieger komt.
Standaardconfiguratie
Standaard is proxy-ondersteuning uitgeschakeld. Hier is de standaardconfiguratie:
:::code-group
[proxy]
enabled = false
[proxy.velocity]
enabled = false
secret = ""
[proxy.bungeecord]
enabled = false
:::