services.httpd.mpm

NixOS option

Multi-processing module to be used by Apache. Available modules are prefork (handles each request in a separate child process), worker (hybrid approach that starts a number of child processes each running a number of threads) and event (the default; a recent variant of worker that handles persistent connections more efficiently).

type: one of "event", "prefork", "worker"
Default
"event"
Example
"worker"
declared in: nixos/modules/services/web-servers/apache-httpd/default.nixView source on NixOS/nixpkgs →