From 42ab2edceda6bbc3c4d9f25122b8ef73887c767e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Capil=C3=A9?= Date: Thu, 19 Mar 2026 17:00:59 -0300 Subject: [PATCH] Enable nginx to read the folders on /var/www/MISP/app/webroot By default nginx on this distro will spawn the workers with the user `nobody` instead of `www-data`, so this new user must be explicitly set at `/etc/nginx/nginx.conf`. Not doing so will result only in *404 Not Found* error pages --- kubernetes/manifests/nginx-cm.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/kubernetes/manifests/nginx-cm.yaml b/kubernetes/manifests/nginx-cm.yaml index c4dd45e..a72044e 100644 --- a/kubernetes/manifests/nginx-cm.yaml +++ b/kubernetes/manifests/nginx-cm.yaml @@ -4,6 +4,7 @@ metadata: name: nginx-conf data: nginx.conf: | + user www-data; worker_processes auto; worker_cpu_affinity auto; pid /tmp/nginx.pid;