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