From 888855d7c62bf8017208d9a9c265d6b6b929535f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markku=20Leini=C3=B6?= Date: Wed, 8 May 2024 21:28:40 +0300 Subject: [PATCH] Closes #16043: Add 'die-on-term = true' to fix stopping uWSGI --- contrib/uwsgi.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/uwsgi.ini b/contrib/uwsgi.ini index a04d85426..288d55927 100644 --- a/contrib/uwsgi.ini +++ b/contrib/uwsgi.ini @@ -11,6 +11,9 @@ master = true ; clear environment on exit vacuum = true +; make SIGTERM to stop the app (instead of reload by default) +die-on-term = true + ; exit if no app can be loaded need-app = true