nix-config/nixos/viridian/services/traefik/routers.nix

19 lines
380 B
Nix

{...}: {
services.traefik.dynamicConfigOptions.http.routers = {
traefik-dashboard = {
rule = "Host(`traefik.home.arpa`)";
entryPoints = [
"websecure"
];
service = "api@internal";
};
open-webui = {
rule = "Host(`ollama.home.arpa`)";
entryPoints = [
"websecure"
];
service = "open-webui";
};
};
}