diff options
| author | Arun Isaac | 2026-07-03 16:30:05 +0100 |
|---|---|---|
| committer | Arun Isaac | 2026-07-03 16:30:05 +0100 |
| commit | cbd8069b0f0aec161798b81e1882771ef9c1c76a (patch) | |
| tree | f8d980a4a186a4d667f7f5b91c724edb6e13b9c1 /guix | |
| parent | c30ea3d181a51921df2a962c842004f571e68449 (diff) | |
| download | guix-forge-cbd8069b0f0aec161798b81e1882771ef9c1c76a.tar.gz guix-forge-cbd8069b0f0aec161798b81e1882771ef9c1c76a.tar.lz guix-forge-cbd8069b0f0aec161798b81e1882771ef9c1c76a.zip | |
fcgiwrap: Set default processes to twice the number of CPUs.
Production deployments must never have only one worker process.
Diffstat (limited to 'guix')
| -rw-r--r-- | guix/forge/fcgiwrap.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/forge/fcgiwrap.scm b/guix/forge/fcgiwrap.scm index f3baad8..8915f66 100644 --- a/guix/forge/fcgiwrap.scm +++ b/guix/forge/fcgiwrap.scm @@ -65,7 +65,7 @@ (user fcgiwrap-instance-user) (group fcgiwrap-instance-group) (processes fcgiwrap-instance-processes - (default 1)) + (default #~(* 2 (total-processor-count)))) (environment-variables fcgiwrap-instance-environment-variables (default '())) (mappings fcgiwrap-instance-mappings |
