From 98f4610fc06272be9f37a0b062f7edcd3e52ebed Mon Sep 17 00:00:00 2001 From: Timongcraft Date: Mon, 22 Jul 2024 14:04:55 +0200 Subject: [PATCH 1/3] feat: Add per-server forwarding configuration Reflect changes from https://github.com/PaperMC/Velocity/pull/1357 --- .../docs/velocity/admin/getting-started/forwarding.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/content/docs/velocity/admin/getting-started/forwarding.md b/src/content/docs/velocity/admin/getting-started/forwarding.md index a25ca63f3..c1045f0ac 100644 --- a/src/content/docs/velocity/admin/getting-started/forwarding.md +++ b/src/content/docs/velocity/admin/getting-started/forwarding.md @@ -16,10 +16,9 @@ UUIDs and skins. Velocity supports three forwarding formats: :::note -You may choose between only one of these forwarding formats. It is not currently possible to "mix -and match" forwarding modes or use all the forwarding formats together. In general, if you are -supporting clients using Minecraft 1.13 and newer only, use Velocity modern forwarding, else you -must use BungeeCord forwarding. +It is now possible to configure forwarding individually for each server. +In general, if you are supporting clients using Minecraft 1.13 and newer only, use Velocity modern forwarding. +For older versions, consider using BungeeGuard for added security; else you must use BungeeCord forwarding. ::: From 7364b8a111827186a4ec0c900a97e09bb8bbd940 Mon Sep 17 00:00:00 2001 From: Timongcraft Date: Mon, 22 Jul 2024 15:14:57 +0200 Subject: [PATCH 2/3] Add example for per-server forwarding configuration --- .../docs/velocity/admin/getting-started/forwarding.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/content/docs/velocity/admin/getting-started/forwarding.md b/src/content/docs/velocity/admin/getting-started/forwarding.md index c1045f0ac..9799939a9 100644 --- a/src/content/docs/velocity/admin/getting-started/forwarding.md +++ b/src/content/docs/velocity/admin/getting-started/forwarding.md @@ -19,6 +19,16 @@ UUIDs and skins. Velocity supports three forwarding formats: It is now possible to configure forwarding individually for each server. In general, if you are supporting clients using Minecraft 1.13 and newer only, use Velocity modern forwarding. For older versions, consider using BungeeGuard for added security; else you must use BungeeCord forwarding. +

Example:

+ + ```toml + lobby = "127.0.0.1:30066" + ``` + Becomes: + + ```toml + lobby = { address = "127.0.0.1:30066", forwarding-mode = "MODERN" } + ``` ::: From 0a103f14cc0ba14940cd144834c22f7091e619d2 Mon Sep 17 00:00:00 2001 From: Timongcraft Date: Mon, 22 Jul 2024 21:06:14 +0200 Subject: [PATCH 3/3] refactor: Remove unnecessary HTML tag --- src/content/docs/velocity/admin/getting-started/forwarding.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/content/docs/velocity/admin/getting-started/forwarding.md b/src/content/docs/velocity/admin/getting-started/forwarding.md index 9799939a9..d6bcaf52c 100644 --- a/src/content/docs/velocity/admin/getting-started/forwarding.md +++ b/src/content/docs/velocity/admin/getting-started/forwarding.md @@ -19,7 +19,8 @@ UUIDs and skins. Velocity supports three forwarding formats: It is now possible to configure forwarding individually for each server. In general, if you are supporting clients using Minecraft 1.13 and newer only, use Velocity modern forwarding. For older versions, consider using BungeeGuard for added security; else you must use BungeeCord forwarding. -

Example:

+ +Example: ```toml lobby = "127.0.0.1:30066"