123456789101112131415161718192021222324252627 |
- server:
- port: 8080
-
- spring:
- application:
- name: api-gateway
-
- cloud:
- gateway:
- routes:
- - id: customer
- uri: http://localhost:8081
- predicates:
- - Path=/customer/**
- filters:
- - StripPrefix=1
-
- - id: account
- uri: http://localhost:8082
- predicates:
- - Path=/account/**
-
- management:
- endpoints:
- web:
- exposure:
- include: "*"
|