feat(tyr): setup komga book manager.

This commit is contained in:
CronyAkatsuki 2026-01-11 20:39:57 +01:00
parent 56c4fafa49
commit 2abcf19eed
3 changed files with 25 additions and 0 deletions

View file

@ -12,5 +12,6 @@
./mosquitto.nix
./linkwarden.nix
./paperless-ngx.nix
./komga.nix
];
}

View file

@ -88,6 +88,7 @@
''"ddns.home.cronyakatsuki.xyz IN A 192.168.0.5"''
''"linkwarden.home.cronyakatsuki.xyz IN A 192.168.0.5"''
''"paperless.home.cronyakatsuki.xyz IN A 192.168.0.5"''
''"komga.home.cronyakatsuki.xyz IN A 192.168.0.5"''
];
};
};

View file

@ -0,0 +1,23 @@
{
services.komga = {
enable = true;
settings.server.port = 8081;
};
services.traefik.dynamicConfigOptions.http = {
services.komga.loadBalancer.servers = [
{
url = "http://localhost:8081";
}
];
routers.komga = {
rule = "Host(`komga.home.cronyakatsuki.xyz`)";
tls = {
certResolver = "porkbun";
};
service = "komga";
entrypoints = "websecure";
};
};
}