MSA
-
[MSA] MSA 레파지토리MSA 2022. 11. 30. 15:33
Gateway application.yml server: port: 8000 spring: profiles: active: local application: name: gateway cloud: gateway: routes: - id: demo-service # 게이트웨이와 연결될 서비스의 이름 uri: http://demo-service:8001 # #게이트웨이로 연결될 서비스 uri predicates: #게이트웨이로 연결될 서비스의 url 패턴 - Path=/demo/** filters: - RemoveRequestHeader=Cookie - RewritePath=/demo/(?.*), /$\{segment} - AuthenticationFilter default-filters: - name: 필터..