From 976837712eb8e98fc4c1b166a807464044fd2df2 Mon Sep 17 00:00:00 2001 From: William Miceli Date: Wed, 29 Apr 2020 14:37:37 -0400 Subject: [PATCH] Bugfix - added "nogroup" and added closing bracket --- templates/Nginx/Examples/SimpleStatic/nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/Nginx/Examples/SimpleStatic/nginx.conf b/templates/Nginx/Examples/SimpleStatic/nginx.conf index c287728..1316e93 100644 --- a/templates/Nginx/Examples/SimpleStatic/nginx.conf +++ b/templates/Nginx/Examples/SimpleStatic/nginx.conf @@ -1,4 +1,4 @@ -user nobody; +user nobody nogroup; worker_processes 5; ## Default: 1 worker_rlimit_nofile 8192; @@ -22,4 +22,5 @@ http { location / { root /usr/share/nginx/html; } + } } \ No newline at end of file