-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkrakend.json
38 lines (38 loc) · 856 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
{
"$schema": "https://www.krakend.io/schema/v3.json",
"version": 3,
"name": "KrakenD - API Gateway",
"timeout": "3000ms",
"cache_ttl": "300s",
"output_encoding": "no-op",
"endpoints": [
{
"endpoint": "/items",
"method": "GET",
"output_encoding": "no-op",
"backend": [
{
"url_pattern": "/items",
"method": "GET",
"host": [
"https://api.restapi-placeholder.com"
]
}
]
},
{
"endpoint": "/items",
"method": "POST",
"output_encoding": "no-op",
"backend": [
{
"url_pattern": "/items",
"method": "POST",
"host": [
"https://api.restapi-placeholder.com"
]
}
]
}
]
}