Revert "refactor: Remove support for port 444"

This reverts commit 052c75849d.
This commit is contained in:
Pim Kunis 2024-07-22 20:36:28 +02:00
parent 052c75849d
commit 92b096608f

View file

@ -9,7 +9,23 @@
providers.kubernetesIngress.allowExternalNameServices = true;
service.loadBalancerIP = myLib.globals.traefikIPv4;
ports.web.redirectTo = "websecure";
ports = {
localsecure = {
port = 8444;
expose = true;
exposedPort = 444;
protocol = "TCP";
tls = {
enabled = true;
options = "";
certResolver = "";
domains = [ ];
};
};
web.redirectTo = "websecure";
};
};
};
};