21 lines
522 B
YAML
21 lines
522 B
YAML
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>.*), /$\{segment}
|
|
|
|
- id: kilimo_assistant_service
|
|
uri: http://localhost:9082
|
|
predicates:
|
|
- Path=/assistant/**
|
|
filters:
|
|
- RewritePath=/assistant/(?<segment>.*), /$\{segment} |