mirror of https://github.com/status-im/consul.git
Adds missing tls_skip_verify option to HTTP check example.
This commit is contained in:
parent
6e1ee02689
commit
a6987c1812
|
@ -107,7 +107,8 @@ A HTTP check:
|
||||||
"check": {
|
"check": {
|
||||||
"id": "api",
|
"id": "api",
|
||||||
"name": "HTTP API on port 5000",
|
"name": "HTTP API on port 5000",
|
||||||
"http": "http://localhost:5000/health",
|
"http": "https://localhost:5000/health",
|
||||||
|
"tls_skip_verify": false,
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"header": {"x-foo":["bar", "baz"]},
|
"header": {"x-foo":["bar", "baz"]},
|
||||||
"interval": "10s",
|
"interval": "10s",
|
||||||
|
|
Loading…
Reference in New Issue