From 7437bd8a484dc4e99c248e779fd9befbe346133c 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 53c0032de..090b306c5 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",