Merged in hotfix/2025-07-15-nginxtune (pull request #2412)

Add worker process limits for EB config.
This commit is contained in:
Patrick Fic
2025-07-15 20:21:38 +00:00

View File

@@ -1,2 +1,8 @@
client_max_body_size 50M;
client_body_buffer_size 5M;
worker_processes auto;
worker_rlimit_nofile 2048;
events {
worker_connections 2048;
}