From e9fe722308b778cfaecad7d8df6c370b85e89fff Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 3 Mar 2026 20:19:28 -0500 Subject: [PATCH] add notes next to ports in service-configs --- service-configs.nix | 56 ++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/service-configs.nix b/service-configs.nix index 9242b1e..da9a37d 100644 --- a/service-configs.nix +++ b/service-configs.nix @@ -10,36 +10,36 @@ rec { ports = { # public - http = 80; - https = 443; - minecraft = 25565; - syncthing_protocol = 22000; - syncthing_discovery = 21027; - matrix_federation = 8448; - coturn = 3478; - coturn_tls = 5349; - livekit = 7880; - soulseek_listen = 50300; - monero = 18080; + http = 80; # TCP + https = 443; # TCP+UDP (HTTP/3 QUIC) + minecraft = 25565; # TCP + syncthing_protocol = 22000; # TCP+UDP (QUIC) + syncthing_discovery = 21027; # UDP + matrix_federation = 8448; # TCP+UDP (HTTP/3 QUIC) + coturn = 3478; # TCP+UDP + coturn_tls = 5349; # TCP+UDP + livekit = 7880; # TCP + soulseek_listen = 50300; # TCP + monero = 18080; # TCP # private - jellyfin = 8096; # no services.jellyfin option for this - torrent = 6011; - bitmagnet = 3333; - gitea = 2283; - immich = 2284; - soulseek_web = 5030; - vaultwarden = 8222; - syncthing_gui = 8384; - matrix = 6167; - ntfy = 2586; - lk_jwt = 8081; - prowlarr = 9696; - sonarr = 8989; - radarr = 7878; - bazarr = 6767; - jellyseerr = 5055; - monero_rpc = 18081; + jellyfin = 8096; # TCP - no services.jellyfin option for this + torrent = 6011; # TCP + bitmagnet = 3333; # TCP + gitea = 2283; # TCP + immich = 2284; # TCP + soulseek_web = 5030; # TCP + vaultwarden = 8222; # TCP + syncthing_gui = 8384; # TCP + matrix = 6167; # TCP + ntfy = 2586; # TCP + lk_jwt = 8081; # TCP + prowlarr = 9696; # TCP + sonarr = 8989; # TCP + radarr = 7878; # TCP + bazarr = 6767; # TCP + jellyseerr = 5055; # TCP + monero_rpc = 18081; # TCP }; https = {