1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/krakend/data/krakend.json
2020-12-02 18:37:15 +08:00

59 lines
1.1 KiB
JSON

{
"version": 2,
"name": "My httpbin gateway",
"port": 8080,
"endpoints": [
{
"endpoint": "/httpbin",
"headers_to_pass": [
"User-Agent"
],
"backend": [
{
"host": [
"https://httpbin.org"
],
"url_pattern": "/headers"
},
{
"host": [
"https://httpbin.org"
],
"url_pattern": "/ip"
}
]
},
{
"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"
}
}
}