Compare commits

...
Author SHA1 Message Date
4aea8cae92 Update mariadb Docker tag to v12.3.3
All checks were successful
/ build (pull_request) Successful in 30s
/ Ansible Lint (push) Successful in 3m41s
/ Ansible Lint (pull_request) Successful in 3m49s
2026-09-22 14:15:52 +00:00
83b0ab0950 public-reverse-proxy(host): Increase nginx worker fd limit
All checks were successful
/ build (push) Successful in 25s
/ Ansible Lint (push) Successful in 4m9s
By default the limit on file descriptors is at a 1024 hard limit and 520k hard limit.
Unsure how this affects nginx, but each client connection needs two file descriptors.
So let's try to set the limit of open files explicitly.
2026-09-22 16:05:05 +02:00
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
user nginx;
worker_processes auto;
worker_rlimit_nofile 2050; # should be worker_connections*2 at least
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;

View file

@ -3,7 +3,7 @@
services:
db:
image: mariadb:12.3.2
image: mariadb:12.3.3
command: --max_allowed_packet=3250585600
environment:
MYSQL_ROOT_PASSWORD: "{{ secret__sunders_db_root_password }}"