This commit is contained in:
2026-08-09 10:27:06 +02:00
parent 74b5b81d06
commit 4dc26ccc2f
3 changed files with 18 additions and 20 deletions
+7 -13
View File
@@ -110,19 +110,6 @@ in
};
};
systemd.services.rssdownloader = {
description = "RSS Torrent Downloader";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = [ pkgs.transmission_4 ];
serviceConfig = {
Type = "simple";
ExecStart = "${rssdownloader}/bin/rssdownloader -config /home/ulve/code/rssdownloader/config.json";
Restart = "on-failure";
User = "ulve";
};
};
systemd.services.transmission = dockerService {
name = "transmission";
description = "Transmission via Mullvad VPN";
@@ -153,6 +140,12 @@ in
dir = "/home/ulve/code/tailscale";
};
systemd.services.colony-archive = dockerService {
name = "colony-archive";
description = "Colony Archive tabletop RPG campaign manager";
dir = "/home/ulve/code/colony-archive";
};
systemd.services.dozzle = {
description = "Dozzle Docker log viewer";
after = [ "docker.service" "network.target" ];
@@ -179,5 +172,6 @@ virtualHosts."aftersummer.maybec.at" = proxyVhost { upstream = "http://127.0.0.
virtualHosts."bookthing.maybec.at" = proxyVhost { upstream = "http://127.0.0.1:8000"; };
virtualHosts."jelly.maybec.at" = proxyVhost { upstream = "http://127.0.0.1:8096"; };
virtualHosts."photos.maybec.at" = proxyVhost { upstream = "http://[::1]:2283"; maxBodySize = "50g"; };
virtualHosts."colony.maybec.at" = proxyVhost { upstream = "http://127.0.0.1:3333"; };
};
}