diff options
| author | Daniel Micay <daniel.micay@grapheneos.org> | 2024-03-18 17:39:10 -0400 |
|---|---|---|
| committer | Daniel Micay <daniel.micay@grapheneos.org> | 2024-03-18 17:39:10 -0400 |
| commit | 65e1272640fd0274ebe974efb831b2dde2eea9c7 (patch) | |
| tree | 3e0ef5e050d62bd7b57535a5ca7354c16347e079 | |
| parent | 1d7e87d7d86fbafefd196d80386ed4c1dff8ac9b (diff) | |
nginx: double per-worker connection and file limit
| -rw-r--r-- | nginx/nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index cd1fb5b4..523072ea 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -7,10 +7,10 @@ error_log syslog:server=unix:/dev/log,nohostname; error_log stderr emerg; worker_processes auto; -worker_rlimit_nofile 16384; +worker_rlimit_nofile 32768; events { - worker_connections 4096; + worker_connections 8192; } http { |
