-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkrakend.json
44 lines (44 loc) · 827 Bytes
/
krakend.json
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
{
"version": 3,
"endpoints": [
{
"endpoint": "/api/users",
"method": "GET",
"backend": [
{
"url_pattern": "/users",
"host": [
"http://user-service:8000"
]
}
]
},
{
"endpoint": "/api/products",
"method": "GET",
"backend": [
{
"url_pattern": "/products",
"host": [
"http://product-service:8000"
]
}
]
},
{
"endpoint": "/api/sites",
"method": "GET",
"backend": [
{
"url_pattern": "/posts",
"host": [
"https://jsonplaceholder.typicode.com"
],
"encoding": "json",
"is_collection": true,
"disable_host_sanitize": true
}
]
}
]
}