From fcc0fec9bb586e8d4566463c409a676c7430850d Mon Sep 17 00:00:00 2001 From: Arthur Date: Mon, 25 Mar 2024 14:18:34 -0700 Subject: [PATCH] 15154 update ini --- contrib/uwsgi.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/uwsgi.ini b/contrib/uwsgi.ini index 1126e1003..d64803158 100644 --- a/contrib/uwsgi.ini +++ b/contrib/uwsgi.ini @@ -1,4 +1,7 @@ [uwsgi] +; bind to the specified UNIX/TCP socket and port (usually localhost) +socket = 127.0.0.1:8001 + ; fail to start if any parameter in the configuration file isn’t explicitly understood by uWSGI. strict = true @@ -10,3 +13,6 @@ vacuum = true ; exit if no app can be loaded need-app = true + +; do not use multiple interpreters +single-interpreter = true