forked from spring-petclinic/spring-petclinic-microservices
-
Notifications
You must be signed in to change notification settings - Fork 3
/
application.yml
45 lines (44 loc) · 1.09 KB
/
application.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
spring:
application:
name: api-gateway
config:
import: optional:configserver:${CONFIG_SERVER_URL:http://localhost:8888/}
cloud:
gateway:
routes:
- id: vets-service
uri: lb://vets-service
predicates:
- Path=/api/vet/**
filters:
- StripPrefix=2
- id: visits-service
uri: lb://visits-service
predicates:
- Path=/api/visit/**
filters:
- StripPrefix=2
- id: customers-service
uri: lb://customers-service
predicates:
- Path=/api/customer/**
filters:
- StripPrefix=2
- id: soap-service
uri: lb://soap-service
predicates:
- Path=/api/soap/**
filters:
- StripPrefix=2
- id: soap-client
uri: lb://soap-client
predicates:
- Path=/api/soap-client/**
filters:
- StripPrefix=2
---
spring:
config:
activate:
on-profile: docker
import: configserver:http://config-server:8888