Skip to content

Commit

Permalink
Avoid over-provisioning workers in containers
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobSanford committed Aug 26, 2021
1 parent 9c8084c commit a77d55f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conf/nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
user NGINX_RUN_USER;
worker_processes auto;
worker_processes 1;
daemon off;

events {
worker_connections 1024;
worker_connections 2048;
}

include /etc/nginx/conf.d/*.conf;

0 comments on commit a77d55f

Please sign in to comment.