Allow a `HEALTHCHECK` configuration object to be defined that allows custom URLs to be defined for "liveness" (healthz) and "readiness". ```python HEALTHCHECK = { "LIVENESS_PATH": "/livenessz/", "READINESS_PATH": "/readinessz/", } ``` Default to `/livenessz/` and `/readinessz/`.