From de1189888007645c8c611e8b4b4f84f1437dab38 Mon Sep 17 00:00:00 2001 From: unlair Date: Sat, 14 Feb 2026 23:35:09 -0500 Subject: [PATCH] fix: kong stops responding kong easily gets overwhelmed when receiving many requests, resulting in an error complaining about not having enough workers. This was due to KONG_NGINX_WORKER_PROCESSES=1 being set. Kong automatically determins the right number of worker processes when this is not specified, which resolves the issue. --- internal/start/start.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/start/start.go b/internal/start/start.go index dd9ca740f..ae7afe4e8 100644 --- a/internal/start/start.go +++ b/internal/start/start.go @@ -502,7 +502,6 @@ EOF // Ref: https://github.com/Kong/kong/issues/3974#issuecomment-482105126 "KONG_NGINX_PROXY_PROXY_BUFFER_SIZE=160k", "KONG_NGINX_PROXY_PROXY_BUFFERS=64 160k", - "KONG_NGINX_WORKER_PROCESSES=1", // Use modern TLS certificate "KONG_SSL_CERT=/home/kong/localhost.crt", "KONG_SSL_CERT_KEY=/home/kong/localhost.key",