From 82e56984fbb9f93d446306ab0a378e8c468f3edf Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Fri, 27 Sep 2024 21:15:38 +0200 Subject: [PATCH] add health check for backend Signed-off-by: Peter Siegmund --- src/main/resources/application.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index fee777c..6a2d6b2 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -45,6 +45,6 @@ spring: - id: token-service uri: ${BACKEND_SERVICE_URI:http://backend-service.web:8080} predicates: - - Path=/v1/token/** + - Path=/v1/token/**, /health/backend filters: - - AuthGatewayFilter + - RewritePath=/health/backend, /actuator/health