owner-apigateway-service 라우팅 정보 추가

- owner-frontend-service
- order-service
This commit is contained in:
bum12ark
2022-01-30 23:30:54 +09:00
parent a91957f188
commit 355041e4ef

View File

@@ -10,4 +10,20 @@ eureka:
spring:
application:
name: owner-apigateway-service
name: owner-apigateway-service
cloud:
gateway:
routes:
- id: owner-frontend-service
uri: lb://OWNER-FRONTEND-SERVICE
predicates:
- Path=/owner-frontend-service/**
filters:
- RewritePath=/owner-frontend-service/(?<segment>.*),/$\{segment}
- id: order-service
uri: lb://ORDER-SERVCIE
predicates:
- Path=/order-service/**
filters:
- RewritePath=/order-service/(?<segment>.*),/$\{segment}