server: port: 9080 spring: application: name: kilimo-gateway cloud: gateway: routes: - id: kilimo_core_service uri: http://localhost:9081 predicates: - Path=/core/** filters: - RewritePath=/core/(?.*), /$\{segment} - id: kilimo_assistant_service uri: http://localhost:9082 predicates: - Path=/assistant/** filters: - RewritePath=/assistant/(?.*), /$\{segment}