From e4d54ebb14f76bc7384808bc76ab361222655c37 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 10 May 2020 03:56:48 +0900 Subject: [PATCH] Add missing lines at top of nginx.conf for user and pid files --- nginx-wiz.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx-wiz.conf b/nginx-wiz.conf index c107f4f04..e57270ee9 100644 --- a/nginx-wiz.conf +++ b/nginx-wiz.conf @@ -1,3 +1,5 @@ +user nobody; +pid /var/run/nginx.pid; include /usr/local/etc/nginx/modules-enabled/*.conf; worker_processes auto;