remove home-assistant and microbin reverse proxy

This commit is contained in:
♥ Minnie ♥ 2024-03-03 10:00:01 +08:00
parent 893ca9a30c
commit b6352e1b51
2 changed files with 0 additions and 20 deletions

View file

@ -2,15 +2,11 @@
{ {
services.traefik.dynamicConfigOptions.http.routers = { services.traefik.dynamicConfigOptions.http.routers = {
microbin = {
rule = "Host(`bin.kanto.dev`)";
entryPoints = [ entryPoints = [
"websecure" "websecure"
]; ];
middlewares = [ middlewares = [
"internal"
]; ];
service = "microbin";
}; };
homarr = { homarr = {
@ -46,17 +42,6 @@
service = "adguard-home"; service = "adguard-home";
}; };
home-assistant = {
rule = "Host(`home.kanto.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
"admin"
];
service = "home-assistant";
};
minecraft = { minecraft = {
rule = "Host(`mc.kanto.dev`)"; rule = "Host(`mc.kanto.dev`)";
entryPoints = [ entryPoints = [

View file

@ -2,15 +2,10 @@
{ {
services.traefik.dynamicConfigOptions.http.services = { services.traefik.dynamicConfigOptions.http.services = {
microbin.loadBalancer.servers = [
{ url = "http://192.168.1.102:8181"; }
]; ];
homarr.loadBalancer.servers = [ homarr.loadBalancer.servers = [
{ url = "http://192.168.1.102:7575"; } { url = "http://192.168.1.102:7575"; }
]; ];
home-assistant.loadBalancer.servers = [
{ url = "http://192.168.1.102:8123"; }
];
adguard-home.loadBalancer.servers = [ adguard-home.loadBalancer.servers = [
{ url = "http://192.168.1.102:3000"; } { url = "http://192.168.1.102:3000"; }
]; ];