Revert "Revert "oran-shell-release: release image for F""
[pti/rtp.git] / meta-starlingx / meta-stx-integ / recipes-devtools / python / files / python-barbican / gunicorn-config.py
1 import multiprocessing
2
3 bind = '0.0.0.0:9311'
4 user = 'barbican'
5 group = 'barbican'
6
7 timeout = 30
8 backlog = 2048
9 keepalive = 2
10
11 workers = multiprocessing.cpu_count() * 2
12
13 loglevel = 'info'
14 errorlog = '-'
15 accesslog = '-'
16