Redirect HTTP to HTTPS
This commit is contained in:
parent
5b78f92812
commit
253515d3fa
1 changed files with 14 additions and 10 deletions
|
@ -11,18 +11,22 @@
|
||||||
providers.kubernetesIngress.allowExternalNameServices = true;
|
providers.kubernetesIngress.allowExternalNameServices = true;
|
||||||
service.loadBalancerIP = myLib.globals.traefikIPv4;
|
service.loadBalancerIP = myLib.globals.traefikIPv4;
|
||||||
|
|
||||||
ports.localsecure = {
|
ports = {
|
||||||
port = 8444;
|
localsecure = {
|
||||||
expose = true;
|
port = 8444;
|
||||||
exposedPort = 444;
|
expose = true;
|
||||||
protocol = "TCP";
|
exposedPort = 444;
|
||||||
|
protocol = "TCP";
|
||||||
|
|
||||||
tls = {
|
tls = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
options = "";
|
options = "";
|
||||||
certResolver = "";
|
certResolver = "";
|
||||||
domains = [ ];
|
domains = [ ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
web.redirectTo = "websecure";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue