traefik: add searxng

This commit is contained in:
notohh 2023-06-14 03:58:30 -04:00
parent 7abcbd68ee
commit c0a896eb25
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -10,6 +10,16 @@ _: {
entryPoints = ["websecure"];
service = "api@internal";
};
homarr = {
rule = "Host(`dashboard.home.arpa`)";
entrypoints = ["web"];
service = "homarr";
};
searxng = {
rule = "Host(`searxng.home.arpa`)";
entryPoints = ["web"];
service = "searxng";
};
kanboard = {
rule = "Host(`kanboard.home.arpa`)";
entryPoints = ["web"];
@ -20,11 +30,6 @@ _: {
entrypoints = ["web"];
service = "stash";
};
homarr = {
rule = "Host(`dashboard.home.arpa`)";
entrypoints = ["web"];
service = "homarr";
};
dashdot = {
rule = "Host(`dashdot.yuki.home.arpa`)";
entrypoints = ["web"];
@ -36,6 +41,7 @@ _: {
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
homarr.loadBalancer.servers = [{url = "http://localhost:7575";}];
dashdot.loadBalancer.servers = [{url = "http://localhost:4000";}];
searxng.loadBalancer.servers = [{url = "http://localhost:8100";}];
};
};
};