17 lines
366 B
YAML
17 lines
366 B
YAML
server:
|
|
port: 8085
|
|
spring:
|
|
cloud:
|
|
gateway:
|
|
server:
|
|
webflux:
|
|
routes:
|
|
- id: auth-service
|
|
uri: lb://auth-service
|
|
predicates:
|
|
- Path=/api/v1/auth/**
|
|
- id: user-service
|
|
uri: lb://user-service
|
|
predicates:
|
|
- Path=/api/v1/user/**
|