1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/krakend/data/krakend.json

59 lines
1.1 KiB
JSON
Raw Normal View History

2019-12-02 10:28:46 +00:00
{
"version": 2,
"name": "My httpbin gateway",
"port": 8080,
"endpoints": [
{
"endpoint": "/httpbin",
2020-12-02 10:37:15 +00:00
"headers_to_pass": [
"User-Agent"
],
2019-12-02 10:28:46 +00:00
"backend": [
{
"host": [
"https://httpbin.org"
],
"url_pattern": "/headers"
},
{
"host": [
"https://httpbin.org"
],
"url_pattern": "/ip"
}
]
2020-12-02 10:37:15 +00:00
},
{
"endpoint": "/about",
"extra_config": {
"github.com/devopsfaith/krakend/proxy": {
"static": {
"data": {
"hello": "world"
},
"strategy": "always"
}
}
},
"backend": [
{
"host": [
"http://fake-backend"
],
"url_pattern": "/"
}
]
}
],
"extra_config": {
"github_com/devopsfaith/krakend-metrics": {
"collection_time": "60s",
"proxy_disabled": false,
"router_disabled": false,
"backend_disabled": false,
"endpoint_disabled": false,
"listen_address": "127.0.0.1:8090"
2019-12-02 10:28:46 +00:00
}
2020-12-02 10:37:15 +00:00
}
2019-12-02 10:28:46 +00:00
}