From 41d9f9f4b26166c27ef3c52a3f4f6aee7d866bb4 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Fri, 1 Oct 2021 13:03:48 +0100 Subject: Suppress useless nginx error messages in gui Log only warnings and higher in nginx error log Issue-ID: POLICY-3683 Signed-off-by: danielhanrahan Change-Id: Id283f34e46633105db7ddf12791c9eb895ee35af --- packages/policy-gui-docker/src/main/docker/etc/nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/policy-gui-docker/src/main') diff --git a/packages/policy-gui-docker/src/main/docker/etc/nginx/nginx.conf b/packages/policy-gui-docker/src/main/docker/etc/nginx/nginx.conf index aac9bb6..bb31a60 100644 --- a/packages/policy-gui-docker/src/main/docker/etc/nginx/nginx.conf +++ b/packages/policy-gui-docker/src/main/docker/etc/nginx/nginx.conf @@ -1,6 +1,6 @@ worker_processes 1; pid /var/run/nginx.pid; -error_log /dev/stdout info; +error_log /dev/stdout warn; events { } http { -- cgit 1.2.3-korg