From 36507e313211240babb6db6810cd5e377d2863e8 Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Thu, 9 Apr 2026 19:19:00 +0300 Subject: [PATCH] Derp. --- nix-system-configs/modules/system/traefik.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nix-system-configs/modules/system/traefik.nix b/nix-system-configs/modules/system/traefik.nix index 9c7b9f4..2fe605b 100644 --- a/nix-system-configs/modules/system/traefik.nix +++ b/nix-system-configs/modules/system/traefik.nix @@ -600,6 +600,13 @@ in { service = "minecraft"; entryPoints = ["minecraft"]; }; + # TCP router for Minecraft Modded (plain TCP on 25566) + minecraft = { + # Use catch-all SNI rule because Minecraft clients don't use TLS/SNI + rule = "HostSNI(`*`)"; + service = "minecraft_modded"; + entryPoints = ["minecraft_modded"]; + }; # TCP router for Minecraft Bedrock (19132) minecraft-bedrock-tcp = {