diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-01-27 12:34:19 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-01-27 12:38:37 +0000 |
commit | bb12d3fe3fb0b41744614bad679ce30853f74f43 (patch) | |
tree | db35b1009b10432f069a3e116e4e4f68f915765d /csit.infra.dash/app | |
parent | 4d03dd53c2d77bf2e35a07ed3a5a95f323c3a370 (diff) |
feat(dash): Tune production parameters
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I4e5546bcaebe1dd6094d4942c83122766559d572
Diffstat (limited to 'csit.infra.dash/app')
-rw-r--r-- | csit.infra.dash/app/app.ini | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/csit.infra.dash/app/app.ini b/csit.infra.dash/app/app.ini index 5484b5b9fc..2b56fdf83c 100644 --- a/csit.infra.dash/app/app.ini +++ b/csit.infra.dash/app/app.ini @@ -3,17 +3,25 @@ ini = :cdash py-autoreload = 0 [cdash] +strict = true +master = true +enable-threads = true +single-interpreter = true + module = wsgi:app master-fifo = /tmp/masterfifo lazy = True -lazy-apps = True +lazy-apps = true touch-chain-reload listen = 128 - -workers = 2 -plugin = python3 - -master = true http-socket = :5000 socket = /tmp/app.sock chmod-socket = 666 + +disable-logging = true +log-4xx = true +log-5xx = true + +workers = 1 +threads = 8 +plugin = python3 |