feat: can't get it to work so bye.

This commit is contained in:
CronyAkatsuki 2026-02-01 19:54:49 +01:00
parent 353ee5f04f
commit 8f2c37f80c
2 changed files with 0 additions and 40 deletions

View file

@ -85,7 +85,6 @@
''"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"''
''"termix.home.cronyakatsuki.xyz IN A 192.168.0.5"''
];
};
};

View file

@ -1,39 +0,0 @@
{
virtualisation.oci-containers.containers.termix = {
image = "ghcr.io/lukegus/termix:latest";
autoStart = true;
ports = [
"8484:8484"
];
labels = {
"io.containers.autoupdate" = "registry";
};
volumes = [
"/var/lib/termix:/app/data:U"
];
extraOptions = ["--network=host"];
environment.PORT = "8484";
};
services.restic.backups = {
local.paths = ["/var/lib/termix"];
server.paths = ["/var/lib/termix"];
};
services.traefik.dynamicConfigOptions.http = {
services.termix.loadBalancer.servers = [
{
url = "http://localhost:8484";
}
];
routers.termix = {
rule = "Host(`termix.home.cronyakatsuki.xyz`)";
tls = {
certResolver = "porkbun";
};
service = "termix";
entrypoints = "websecure";
};
};
}