nixos/nginx: fix SystemCallFilter for openresty

(cherry picked from commit 30186896ee)
This commit is contained in:
ajs124
2022-05-30 11:57:10 +02:00
committed by github-actions[bot]
parent 3a8981f184
commit 70fda42f22

View File

@@ -932,7 +932,7 @@ in
# System Call Filtering
SystemCallArchitectures = "native";
SystemCallFilter = [ "~@cpu-emulation @debug @keyring @mount @obsolete @privileged @setuid" ]
++ optionals ((cfg.package != pkgs.tengine) && (!lib.any (mod: (mod.disableIPC or false)) cfg.package.modules)) [ "~@ipc" ];
++ optionals ((cfg.package != pkgs.tengine) && (cfg.package != pkgs.openresty) && (!lib.any (mod: (mod.disableIPC or false)) cfg.package.modules)) [ "~@ipc" ];
};
};