From e1f0f539445d979a7634be437db831d564970ead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teemu=20Hein=C3=A4m=C3=A4ki?= Date: Fri, 29 Jan 2021 17:37:14 +0200 Subject: [PATCH] Fix typo in uwsgi.ini The option that controls the amount of workers in uwsgi is processes not process. Now the container spawns four processes instead of one. Fixes maxking/docker-mailman#368 --- postorius/mailman-web/uwsgi.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postorius/mailman-web/uwsgi.ini b/postorius/mailman-web/uwsgi.ini index b95ff2c..85a3f6a 100644 --- a/postorius/mailman-web/uwsgi.ini +++ b/postorius/mailman-web/uwsgi.ini @@ -11,7 +11,7 @@ wsgi-file = wsgi.py # Setup default number of processes and threads per process. master = true -process = 4 +processes = 4 # Drop privielges and don't run as root. uid = mailman