diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2021-10-01 13:08:03 +0100 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2021-10-01 13:08:03 +0100 |
commit | 3a194e4bb22c3a2708ed1817e2aba622c8d7765a (patch) | |
tree | de41d54f2de39d846e620d2925f9da9b3c7ebfde /runtime | |
parent | 7c4cea7c3ee9031092facf20ff8df937d56d2c2e (diff) |
Suppress useless nginx error messages in clamp-fe
Log only warnings and higher in nginx error log
Issue-ID: POLICY-3683
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: If5d56ceb4d63381616c747d68e231566d7ecc03c
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/main/docker/frontend/nginx/nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/main/docker/frontend/nginx/nginx.conf b/runtime/src/main/docker/frontend/nginx/nginx.conf index beeb2b1eb..a8fdc2a94 100644 --- a/runtime/src/main/docker/frontend/nginx/nginx.conf +++ b/runtime/src/main/docker/frontend/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 { @@ -15,4 +15,4 @@ http { keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf; - }
\ No newline at end of file + } |