From 44c38faa0b9b0bfc83092d25c487be89891883dc Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Fri, 4 Sep 2020 13:00:27 +0200 Subject: [PATCH] drop health-check endpoint from access.log --- docker/nginx/conf.d/client.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/nginx/conf.d/client.conf b/docker/nginx/conf.d/client.conf index 8a68f603..255caf3d 100644 --- a/docker/nginx/conf.d/client.conf +++ b/docker/nginx/conf.d/client.conf @@ -108,6 +108,8 @@ server { location /health-check { include /etc/nginx/conf.d/include/cors; + access_log off; # do not log traffic to health-check endpoint + proxy_pass http://health-check:3100; }