From 6b841b1efa122769184fef250a94ef850a4d242f Mon Sep 17 00:00:00 2001 From: Jake Anstadt Date: Fri, 20 Aug 2021 08:52:29 -0500 Subject: [PATCH] Nginx Permissions Error Running via docker on QNAP/synology there might be additional ACLs provided by their respective linux flavors that cause a 403 when trying to view clips/recordings from the UI. Forcing nginx to run as root solves this on my QNAP. --- nginx/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 51842cb70..abb0261fe 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,3 +1,4 @@ +user root; worker_processes 1; error_log /var/log/nginx/error.log warn;