Revert "refactor: Remove support for port 444"
This reverts commit 052c75849d
.
This commit is contained in:
parent
052c75849d
commit
92b096608f
1 changed files with 17 additions and 1 deletions
|
@ -9,7 +9,23 @@
|
||||||
providers.kubernetesIngress.allowExternalNameServices = true;
|
providers.kubernetesIngress.allowExternalNameServices = true;
|
||||||
service.loadBalancerIP = myLib.globals.traefikIPv4;
|
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";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue