17 lines
352 B
YAML
17 lines
352 B
YAML
server:
|
|
port: 9080
|
|
spring:
|
|
application:
|
|
name: kilimo-gateway
|
|
cloud:
|
|
gateway:
|
|
httpclient:
|
|
connect-timeout: 5000
|
|
response-timeout: 10s
|
|
routes:
|
|
- id: kilimo_service_route
|
|
uri: http://localhost:9081
|
|
predicates:
|
|
- Path=/users/**
|
|
filters:
|
|
- StripPrefix=1 |