Align mtproto proxy port with external 8443

This commit is contained in:
randogoth 2026-02-07 20:16:45 +02:00
parent e84c86a29c
commit 42bdb61280

View file

@ -34,9 +34,12 @@ SECRET=${config.sops.placeholder."mtproto_secret"}
mtproto-proxy = { mtproto-proxy = {
image = "docker.io/telegrammessenger/proxy:latest"; image = "docker.io/telegrammessenger/proxy:latest";
autoStart = true; autoStart = true;
ports = [ "0.0.0.0:8443:443" ]; ports = [ "0.0.0.0:8443:8443" ];
volumes = [ "mtproxy-data:/data" ]; volumes = [ "mtproxy-data:/data" ];
environmentFiles = [ config.sops.templates."mtproto-proxy.env".path ]; environmentFiles = [ config.sops.templates."mtproto-proxy.env".path ];
environment = {
PORT = "8443";
};
}; };
}; };
} }