mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
fix(endpoints): route /health endpoint to web app server (PROJQUAY-10155) The nginx regex pattern /health/(.*) required at least one character after /health/, causing bare /health requests to return 404 by falling through to static file handling. Changed to /health(/.*)? to make the trailing path optional. Co-authored-by: Claude <noreply@anthropic.com>