diff --git a/helm/core-manifest-service/templates/deployment.yaml b/helm/core-manifest-service/templates/deployment.yaml
index e29cb76f7af4d4a04b88d2312fd7fa74b6069fab..513aa098d8ad3d09233fc168942ae0962c579701 100644
--- a/helm/core-manifest-service/templates/deployment.yaml
+++ b/helm/core-manifest-service/templates/deployment.yaml
@@ -34,14 +34,14 @@ spec:
           {{- if .Values.probe.liveness.enabled }}
           livenessProbe:
             httpGet:
-              path: /
+              path: {{ .Values.appRoot }}healthy
               port: http
             {{- omit .Values.probe.liveness "enabled" | toYaml | nindent 12 }}
           {{- end }}
           {{- if .Values.probe.readiness.enabled }}
           readinessProbe:
             httpGet:
-                path: /
+                path: {{ .Values.appRoot }}ready
                 port: http
             {{- omit .Values.probe.readiness "enabled" | toYaml | nindent 12 }}
           {{- end }}