Skip to content

Commit

Permalink
Release v2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alombarte committed Nov 9, 2023
1 parent a7afd9a commit ca90001
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion krakend.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://www.krakend.io/schema/krakend.json",
"title": "Schema validation for the latest version of KrakenD. Consider sticking to the specific version you are using.",
"$ref": "v2.4/krakend.json"
"$ref": "v2.5/krakend.json"
}
6 changes: 3 additions & 3 deletions v2.5/krakend.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@
"listen_ip": {
"$id": "#service/listen_ip",
"title": "Listen IP",
"description": "The IP address that KrakenD listens to in IPv4, IPv6, or IPv4-mapped IPv6 formats. An empty string, or no declaration at all means listening on all interfaces. The inclusion of `::` is meant for IPv6 format only (**this is not the port**). Examples of valid addresses are `192.0.2.1` (IPv4), `2001:db8::68` (IPv6), or `::ffff:192.0.2.1` (IPv4-mapped IPv6).",
"description": "The IP address that KrakenD listens to in IPv4 or IPv6. An empty string, or no declaration at all means listening on all interfaces. The inclusion of `::` is meant for IPv6 format only (**this is not the port**). Examples of valid addresses are `192.0.2.1` (IPv4), `2001:db8::68` (IPv6). The values `::` and `0.0.0.0` listen to all addresses and both are valid for IPv4 and IPv6 simultaneously.",
"type": "string",
"default": "",
"examples": ["172.12.1.1","::1","::1:127.0.0.1"]
"default": "0.0.0.0",
"examples": ["172.12.1.1","::1"]
},
"timeout": {
"$id": "#service/timeout",
Expand Down

0 comments on commit ca90001

Please sign in to comment.