feat(thor): add changedetection.io

This commit is contained in:
CronyAkatsuki 2025-05-10 07:27:11 +02:00
parent 5b3cb422e0
commit ee550f58b7
2 changed files with 30 additions and 1 deletions

View file

@ -0,0 +1,25 @@
{...}: {
services.changedetection-io = {
enable = true;
playwrightSupport = true;
baseURL = "https://changedetection.cronyakatsuki.xyz";
behindProxy = true;
};
services.traefik.dynamicConfigOptions.http = {
services.changedetection.loadBalancer.servers = [
{
url = "http://localhost:5000";
}
];
routers.changedetection = {
rule = "Host(`changedetection.cronyakatsuki.xyz`)";
tls = {
certResolver = "porkbun";
};
service = "changedetection";
entrypoints = "websecure";
};
};
}

View file

@ -1 +1,5 @@
{...}: {}
{...}: {
imports = [
./changedetection-io.nix
];
}