diff --git a/api/tacticalrmm/core/management/commands/create_uwsgi_conf.py b/api/tacticalrmm/core/management/commands/create_uwsgi_conf.py index 10446caa..d18a015a 100644 --- a/api/tacticalrmm/core/management/commands/create_uwsgi_conf.py +++ b/api/tacticalrmm/core/management/commands/create_uwsgi_conf.py @@ -35,7 +35,7 @@ class Command(BaseCommand): "buffer-size": str(getattr(settings, "UWSGI_BUFFER_SIZE", 65535)), "vacuum": str(getattr(settings, "UWSGI_VACUUM", True)).lower(), "die-on-term": str(getattr(settings, "UWSGI_DIE_ON_TERM", True)).lower(), - "max-requests": str(getattr(settings, "UWSGI_MAX_REQUESTS", 500)), + "max-requests": str(getattr(settings, "UWSGI_MAX_REQUESTS", 50)), "disable-logging": str( getattr(settings, "UWSGI_DISABLE_LOGGING", True) ).lower(),