Projet

Général

Profil

0001-debian-use-cheaper-uwsgi-subsystem-44416.patch

Frédéric Péters, 29 juin 2020 15:30

Télécharger (998 octets)

Voir les différences:

Subject: [PATCH] debian: use cheaper uwsgi subsystem (#44416)

 debian/uwsgi.ini | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)
debian/uwsgi.ini
1 1
[uwsgi]
2 2
auto-procname = true
3 3
procname-prefix-spaced = wcs
4
die-on-term = true
5
strict = true
4 6

  
5 7
plugin = python3
8
single-interpreter = true
6 9
module = wcs.wsgi:application
10
need-app = true
7 11

  
8 12
http-socket = /run/wcs/wcs.sock
9 13
chmod-socket = 666
10 14
vacuum = true
11 15

  
12 16
master = true
13
processes = 10
14
harakiri = 120
15 17
enable-threads = true
18
harakiri = 120
19

  
20
processes = 500
21

  
22
cheaper-algo = spare2
23
cheaper = 5
24
cheaper-initial = 5
25
cheaper-step = 5
26

  
16 27
max-requests = 500
17 28
max-worker-lifetime = 7200
18 29

  
19
-