fix local config
Some checks failed
deploy to hetzner / deploy (push) Failing after 11m51s

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-12-12 00:23:30 +01:00
parent c1122e9abd
commit 80dbbb90a0

View File

@@ -40,23 +40,23 @@ spring:
- id: timezone-service
uri: lb://timezone-service
predicates:
- Path=/v1/timezone/**, /health/timezone, /timezone/v3/api-docs
- Path=/v1/timezone/**, /health/timezone, /timezone-service/v3/api-docs
filters:
- RewritePath=/health/timezone, /actuator/health
- RewritePath=/timezone/(?<segment>.*), /$\{segment}
- RewritePath=/timezone-service/(?<segment>.*), /$\{segment}
- id: google-service
uri: ${GOOGLE_SERVICE_URI:http://google-service.web:8080}
predicates:
- Path=/v1/account/**, /health/google, /google/v3/api-docs
- Path=/v1/account/**, /health/google, /google-service/v3/api-docs
filters:
- RewritePath=/health/google, /actuator/health
- RewritePath=/google/(?<segment>.*), /$\{segment}
- RewritePath=/google-service/(?<segment>.*), /$\{segment}
- id: token-service
uri: ${BACKEND_SERVICE_URI:http://backend-service.web:8080}
predicates:
- Path=/v1/token/**, /health/backend, /token/v3/api-docs
- Path=/v1/token/**, /health/backend, /token-service/v3/api-docs
filters:
- RewritePath=/health/backend, /actuator/health
- RewritePath=/token/(?<segment>.*), /$\{segment}
- RewritePath=/token-service/(?<segment>.*), /$\{segment}