Hello,
I'm running a server set up with WordOps (v3.22.0) and I'm trying to resolve tcp_accept_queue_drops alerts from Netdata during high-traffic periods.
The Goal:
The solution is to add the backlog=32768 parameter to my main listen 443 ssl directive, as my net.core.somaxconn is already set to 32768.
The Problem:
I cannot find the file that contains the active listen 443 ssl directive. After extensive searching, I've confirmed:
The listen directives are not in the individual site configuration files in /etc/nginx/sites-available/.
The listen directives are not in any files in /etc/nginx/common/.
The listen directives are not in a global server block in /etc/nginx/conf.d/.
My sites all inherit their SSL listener configuration from a shared file, but I am unable to locate it. I've tried searching for listen, 443, and even dumping the full Nginx config with nginx -T, but the exact file location remains a mystery.
My Question:
Could you please tell me which WordOps file I need to edit to add the backlog parameter to the main listen 443 ssl and listen [::]:443 ssl directives that all my sites inherit?
Thank you for your help