From 0bd78b4901a884a7dbfdac7dbb00eab7eb8eae9f Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Fri, 24 Jun 2022 13:13:10 +0200 Subject: [PATCH] increase timers limits --- nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx.conf b/nginx.conf index de55d27..dab961a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -45,6 +45,9 @@ http { lua_package_path "/etc/nginx/libs/?.lua;;"; + lua_max_pending_timers 16384; # maximum number of waiting tasks + lua_max_running_timers 4096; # maximum number of simultaneous running tasks + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" $upstream_response_time '