Suppress useless nginx error messages in clamp-fe 47/124647/1
authordanielhanrahan <daniel.hanrahan@est.tech>
Fri, 1 Oct 2021 12:08:03 +0000 (13:08 +0100)
committerdanielhanrahan <daniel.hanrahan@est.tech>
Fri, 1 Oct 2021 12:08:03 +0000 (13:08 +0100)
Log only warnings and higher in nginx error log

Issue-ID: POLICY-3683
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: If5d56ceb4d63381616c747d68e231566d7ecc03c

runtime/src/main/docker/frontend/nginx/nginx.conf

index beeb2b1..a8fdc2a 100644 (file)
@@ -1,6 +1,6 @@
 worker_processes  1;
 pid /var/run/nginx.pid;
-error_log /dev/stdout info;
+error_log /dev/stdout warn;
 events {
 }
 http {
@@ -15,4 +15,4 @@ http {
     keepalive_timeout  65;
     #gzip  on;
     include /etc/nginx/conf.d/*.conf;
-  }
\ No newline at end of file
+  }