1234567891011121314151617181920212223242526 |
- server:
- port: 8080
-
- spring:
- application:
- name: api-gateway
-
- cloud:
- gateway:
- routes:
- - id: account
- uri: lb://account
- predicates:
- - Path=/account/**
- - id: customer
- uri: lb://customer
- predicates:
- - Path=/customer/**
- logging:
- level:
- org.springframework.cloud.gateway: DEBUG
- management:
- endpoints:
- web:
- exposure:
- include: health,gateway
|