From 627fcd7471e09d0f06179e000a3c7f17d81131fd Mon Sep 17 00:00:00 2001 From: zPlus Date: Tue, 21 Mar 2023 10:31:25 +0100 Subject: [PATCH] Change default value of gunicorn --workers to 2 in template systemd service. --- web.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.service b/web.service index 31cf945..a108e81 100644 --- a/web.service +++ b/web.service @@ -17,7 +17,7 @@ User=git Group=git WorkingDirectory=/home/git/clif -ExecStart=/home/git/clif/venv/bin/gunicorn --workers 4 --bind localhost:5000 web:application +ExecStart=/home/git/clif/venv/bin/gunicorn --workers 2 --bind localhost:5000 web:application Restart=always