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
This commit is contained in:
Teemu Heinämäki
2021-01-29 17:37:14 +02:00
committed by GitHub
parent 61f540a212
commit e1f0f53944

View File

@@ -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