This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
NGINX (Loadbalancer): Custom configuration #713
privateVoit
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
Hi @privateVoit Thank you for providing this input. Would it not make more sense to create an option to provide a custom |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there!
We are currenlty seeing a huge load on one of our clusters (~1700 active connections). The nginx is hitting the worker_rlimit and therefore dropping connections.
To fix that we had to scale the orbiter deployment to zero so we could edit the nginx.conf without node-agent interfering.
We added following directive:
worker_rlimit_nofile 8192;
Since this isn't the first time that we needed a change in the nginx.conf a custom configuration for the nginx.conf would be nice.
Possible solution:
It would be cool if the node-agent would add follwing line to the nginx configuration.
include /etc/nginx/conf.d/*;
This way the administrator has the ability to add custom configuration in the conf.d directory like
worker_rlimit_nofile
.Is this something you might consider adding?
Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions