- Remove ollama service configuration and dependencies - Clean up traefik routing for ollama web interface - Comment out traefik service examples for clarity
11 lines
231 B
Nix
11 lines
231 B
Nix
{...}: {
|
|
services.traefik.dynamicConfigOptions.http.routers = {
|
|
traefik-dashboard = {
|
|
rule = "Host(`traefik.home.arpa`)";
|
|
entryPoints = [
|
|
"websecure"
|
|
];
|
|
service = "api@internal";
|
|
};
|
|
};
|
|
}
|