traefik: init neko
All checks were successful
ci/woodpecker/push/checks Pipeline was successful

This commit is contained in:
notohh 2023-09-18 18:28:26 -04:00
parent f4d7a86aa4
commit 8631895f28
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -32,9 +32,17 @@
tls.domains = [{main = "*.notohh.dev";}]; tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "production"; tls.certresolver = "production";
}; };
neko = {
rule = "Host(`neko.notohh.dev`)";
entrypoints = ["websecure"];
service = "neko";
tls.domains = [{main = "neko.notohh.dev";}];
tls.certresolver = "production";
};
}; };
services = { services = {
uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}]; uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}];
neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}];
}; };
}; };
}; };