From f526cb5595a6797ac160ba0e0b096c161db29318 Mon Sep 17 00:00:00 2001 From: randogoth Date: Sat, 7 Feb 2026 20:19:41 +0200 Subject: [PATCH] Fix mtproto proxy port mapping to 8443:443 --- modules/services/podman.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/services/podman.nix b/modules/services/podman.nix index 4be2fa3..cb1d6b7 100644 --- a/modules/services/podman.nix +++ b/modules/services/podman.nix @@ -34,12 +34,9 @@ SECRET=${config.sops.placeholder."mtproto_secret"} mtproto-proxy = { image = "docker.io/telegrammessenger/proxy:latest"; autoStart = true; - ports = [ "0.0.0.0:8443:8443" ]; + ports = [ "0.0.0.0:8443:443" ]; volumes = [ "mtproxy-data:/data" ]; environmentFiles = [ config.sops.templates."mtproto-proxy.env".path ]; - environment = { - PORT = "8443"; - }; }; }; }