mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
59 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|