summaryrefslogtreecommitdiff
path: root/nginx
diff options
context:
space:
mode:
authorDaniel Micay <daniel.micay@grapheneos.org>2024-03-18 17:39:10 -0400
committerDaniel Micay <daniel.micay@grapheneos.org>2024-03-18 17:39:10 -0400
commit65e1272640fd0274ebe974efb831b2dde2eea9c7 (patch)
tree3e0ef5e050d62bd7b57535a5ca7354c16347e079 /nginx
parent1d7e87d7d86fbafefd196d80386ed4c1dff8ac9b (diff)
nginx: double per-worker connection and file limit
Diffstat (limited to 'nginx')
-rw-r--r--nginx/nginx.conf4
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 {