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

This commit is contained in:
notohh 2023-09-25 12:49:20 -04:00
parent d2de276487
commit 0327f33d34
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -46,11 +46,19 @@
tls.domains = [{main = "neko.notohh.dev";}]; tls.domains = [{main = "neko.notohh.dev";}];
tls.certresolver = "production"; tls.certresolver = "production";
}; };
conduit = {
rule = "Host(`matrix.notohh.dev`)";
entrypoints = ["websecure"];
service = "conduit";
tls.domains = [{main = "matrix.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";}];
gotify.loadBalancer.servers = [{url = "http://100.87.54.48:3000";}]; gotify.loadBalancer.servers = [{url = "http://100.87.54.48:3000";}];
neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}]; neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}];
conduit.loadBalancer.servers = [{url = "http://100.110.140.130:6167";}];
}; };
}; };
}; };