Increasing worker_connections of nginx on Beanstalk nodejs environment
I am trying to increase the number of possible worker_connections of my nginx on my Beanstalk nodejs server (Amazon Linux 2). I followed the documentation and created a file .platform/nginx/conf.d/proxy.conf with this content: worker_rlimit_nofile 65536; events { worker_connections 32768; }…