From 58b8cb9603c110997615ad2e6ec0ddde3054943d Mon Sep 17 00:00:00 2001 From: Paul Sinclair Date: Tue, 5 Mar 2019 21:09:50 -0500 Subject: [PATCH] Add nginx error log to stdout --- grocy/rootfs/etc/nginx/nginx-ssl.conf | 1 + grocy/rootfs/etc/nginx/nginx.conf | 1 + 2 files changed, 2 insertions(+) diff --git a/grocy/rootfs/etc/nginx/nginx-ssl.conf b/grocy/rootfs/etc/nginx/nginx-ssl.conf index efe737b..c6b5b7e 100755 --- a/grocy/rootfs/etc/nginx/nginx-ssl.conf +++ b/grocy/rootfs/etc/nginx/nginx-ssl.conf @@ -1,3 +1,4 @@ +error_log /dev/stdout info; worker_processes 1; pid /var/run/nginx.pid; user nginx nginx; diff --git a/grocy/rootfs/etc/nginx/nginx.conf b/grocy/rootfs/etc/nginx/nginx.conf index a6a7a82..ae48ca6 100755 --- a/grocy/rootfs/etc/nginx/nginx.conf +++ b/grocy/rootfs/etc/nginx/nginx.conf @@ -1,3 +1,4 @@ +error_log /dev/stdout info; worker_processes 1; pid /var/run/nginx.pid; user nginx nginx;