@pummelchen said in How to Load Balance for all CPU Cores:
worker_processes 2;
I used the fork of @baris and replaced the whole mubsub with it. That finally spawned 2 stable node processes and the forum runs fine.
However I had to change worker_processes from 2 back to 1 to get it working.
With 2 worker processes I got this error:
bind() to 0.0.0.0:80 failed (98: Address already in use)
Which is mostly an issue in my ngix.conf as it 1) runs as a webserver:443 but also 2) routes traffic and there is conflict somewhere when two worker processes are active.
The main issue is solved, I post my nginx.conf just in case. Thanks !