traefik dashboard
This commit is contained in:
parent
7e234dc754
commit
45ed24ca2c
1 changed files with 11 additions and 8 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
"router" = { dest = "http://router.dns.${homelab.domain}:80"; auth = false; };
|
"router" = { dest = "http://router.dns.${homelab.domain}:80"; auth = false; };
|
||||||
"home" = { dest = "http://home.dns.${homelab.domain}:8123"; auth = false; };
|
"home" = { dest = "http://home.dns.${homelab.domain}:8123"; auth = false; };
|
||||||
|
|
||||||
# "dynamic" = { dest = "http://127.0.0.1:8080"; auth = true; };
|
"dynamic" = { dest = "http://127.0.0.1:8082"; auth = true; };
|
||||||
"dns" = { dest = "http://localhost:8088"; auth = true; };
|
"dns" = { dest = "http://localhost:8088"; auth = true; };
|
||||||
|
|
||||||
"containers" = { dest = "http://localhost:5001"; auth = false; };
|
"containers" = { dest = "http://localhost:5001"; auth = false; };
|
||||||
|
|
@ -93,14 +93,17 @@ in {
|
||||||
traefik = {
|
traefik = {
|
||||||
enable = true;
|
enable = true;
|
||||||
staticConfigOptions = {
|
staticConfigOptions = {
|
||||||
entryPoints.web = {
|
entryPoints = {
|
||||||
|
traefik.address = "127.0.0.1:8082";
|
||||||
|
web = {
|
||||||
address = "127.0.0.1:81";
|
address = "127.0.0.1:81";
|
||||||
forwardedHeaders.trustedIPs = [ "127.0.0.1/32" ];
|
forwardedHeaders.trustedIPs = [ "127.0.0.1/32" ];
|
||||||
};
|
};
|
||||||
# api = {
|
};
|
||||||
# dashboard = true;
|
api = {
|
||||||
# insecure = true;
|
dashboard = true;
|
||||||
# };
|
insecure = true;
|
||||||
|
};
|
||||||
global = {
|
global = {
|
||||||
checkNewVersion = false;
|
checkNewVersion = false;
|
||||||
sendAnonymousUsage = false;
|
sendAnonymousUsage = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue