modules: services: indexers: limit Jackett memory
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
212dd299e2
commit
daa69a54fa
|
@ -21,6 +21,15 @@ in
|
|||
enable = true;
|
||||
};
|
||||
|
||||
# Jackett wants to eat *all* my RAM if left to its own devices
|
||||
systemd.services.jackett = {
|
||||
serviceConfig = {
|
||||
MemoryHigh = "15%";
|
||||
MemoryMax = "25%";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
services.nginx.virtualHosts."${jackettDomain}" =
|
||||
lib.mkIf cfg.jackett.enable {
|
||||
forceSSL = true;
|
||||
|
|
Loading…
Reference in a new issue