From 165c47391572ffe4933d187f6e61356b2789b953 Mon Sep 17 00:00:00 2001 From: greg Date: Sat, 24 May 2025 09:18:36 +0200 Subject: [PATCH] refactor: simplify nginx config by removing redundant worker and event settings --- nginx.conf | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/nginx.conf b/nginx.conf index 757849f..91654e7 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,17 +1,3 @@ -worker_processes auto; -daemon off; # Run in the foreground, managed by Docker/start.sh - -# Ensure appuser can write to pid path if it's in a restricted location. -# Default for alpine nginx is /run/nginx/nginx.pid, which should be fine. -# If issues, uncomment and adjust: -# pid /tmp/nginx.pid; - -error_log /var/log/nginx/error.log warn; # Ensure appuser can write here or adjust - -events { - worker_connections 1024; -} - http { include /etc/nginx/mime.types; default_type application/octet-stream;