fix(ingress.tjo.cloud): increase number of connections per ingress instance
Some checks failed
/ lint (push) Failing after 2m26s

This commit is contained in:
Tine 2025-03-14 19:01:47 +01:00
parent 4cbdce717d
commit 64e570387d
Signed by: mentos1386
SSH key fingerprint: SHA256:MNtTsLbihYaWF8j1fkOHfkKNlnN1JQfxEU/rBU8nCGw

View file

@ -1,12 +1,13 @@
user www-data;
worker_processes auto;
worker_rlimit_nofile 65536;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
error_log syslog:server=unix:/dev/log;
events {
worker_connections 768;
worker_connections 65536;
}
http {