home » zplus/clif.git
Author zPlus <zplus@peers.community> 2023-03-21 09:31:25
Committer zPlus <zplus@peers.community> 2023-03-21 09:31:25
Commit 627fcd7 (patch)
Tree 1e5aec7
Parent(s)

Change default value of gunicorn --workers to 2 in template systemd service.


commits diff: da87ad8..627fcd7
1 file changed, 1 insertion, 1 deletiondownload


Diffstat
-rw-r--r-- web.service 2

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+1/-1 M   web.service
index 31cf945..a108e81
old size: 635B - new size: 635B
@@ -17,7 +17,7 @@ User=git
17 17 Group=git
18 18
19 19 WorkingDirectory=/home/git/clif
20 - ExecStart=/home/git/clif/venv/bin/gunicorn --workers 4 --bind localhost:5000 web:application
20 + ExecStart=/home/git/clif/venv/bin/gunicorn --workers 2 --bind localhost:5000 web:application
21 21
22 22 Restart=always
23 23