worker_processes auto and worker_connections 1024 is currently hard coded in the nginx.conf and cannot easily be changed via deployment.
What Is the New Behavior?
nginx.conf is changed to a gomplate template and worker_processes and worker_connections are now configurable via environment variables NGINX_WORKER_PROCESSES and NGINX_WORKER_CONNECTIONS.
PR Type
[x] Feature
What Is the Current Behavior?
worker_processes auto
andworker_connections 1024
is currently hard coded in thenginx.conf
and cannot easily be changed via deployment.What Is the New Behavior?
nginx.conf
is changed to a gomplate template andworker_processes
andworker_connections
are now configurable via environment variablesNGINX_WORKER_PROCESSES
andNGINX_WORKER_CONNECTIONS
.Does this PR Introduce a Breaking Change?
[x] No
Other Information
AB#95876