mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 00:31:56 -06:00
Use 4 WSGI workers on 64bit systems
Commit f1d5ab3a03
increases WSGI worker
count to five. This turned out to be a bit much for our test systems.
Four workers are good enough and still double the old amount.
See: https://pagure.io/freeipa/issue/7587
Signed-off-by: Christian Heimes <cheimes@redhat.com>
Reviewed-By: Tibor Dudlak <tdudlak@redhat.com>
This commit is contained in:
parent
e90d90c5c3
commit
0e21d93391
@ -46,7 +46,7 @@ class BaseConstantsNamespace(object):
|
||||
MOD_WSGI_PYTHON3 = None
|
||||
# WSGIDaemonProcess process count. On 64bit platforms, each process
|
||||
# consumes about 110 MB RSS, from which are about 35 MB shared.
|
||||
WSGI_PROCESSES = 5 if IS_64BITS else 2
|
||||
WSGI_PROCESSES = 4 if IS_64BITS else 2
|
||||
# high ciphers without RC4, MD5, TripleDES, pre-shared key, secure
|
||||
# remote password, and DSA cert authentication.
|
||||
TLS_HIGH_CIPHERS = "HIGH:!aNULL:!eNULL:!MD5:!RC4:!3DES:!PSK:!SRP:!aDSS"
|
||||
|
Loading…
Reference in New Issue
Block a user