Merge pull request #2756 from alexbelgium/copilot/avoid-logging-healthchecks

fix: suppress healthcheck log spam in filebrowser quantum addon
This commit is contained in:
Alexandre
2026-06-03 22:58:17 +02:00
committed by GitHub

View File

@@ -0,0 +1,8 @@
server {
listen 127.0.0.1:3001;
access_log off;
location /health {
return 200 'OK';
}
}