Redirect HTTP to HTTPS

This commit is contained in:
Pim Kunis 2024-05-12 10:28:08 +02:00
parent 5b78f92812
commit 253515d3fa

View file

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