Disable access log for health endpoint

This commit is contained in:
Daniel Berteaud 2023-12-21 12:31:29 +01:00
parent d20774f507
commit 33bec0b44e

View File

@ -38,6 +38,7 @@ server {
} }
location = /health { location = /health {
access_log off;
proxy_pass http://synapse; proxy_pass http://synapse;
} }