1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-06-02 06:06:06 +02:00

nginx: Raise worker NOFILE limits

This is mostly to resolve issues on luna where nginx is hitting the
limit, but the higher limit won't hurt other machines so I'm not putting
it in a variable for now.

Signed-off-by: Florian Pritz <bluewind@xinu.at>
This commit is contained in:
Florian Pritz 2018-11-18 17:46:21 +01:00
parent c00ac58769
commit d724f8cd47
No known key found for this signature in database
GPG Key ID: 6D1655C14CE1C13E

View File

@ -4,9 +4,11 @@ load_module /usr/lib/nginx/modules/ngx_http_brotli_filter_module.so;
load_module /usr/lib/nginx/modules/ngx_http_brotli_static_module.so;
events {
worker_connections 1024;
worker_connections 2048;
}
worker_rlimit_nofile 2048;
error_log syslog:server=unix:/dev/log,nohostname info;
http {