Adds missing tls_skip_verify option to HTTP check example.

This commit is contained in:
James Phillips 2017-06-24 15:37:52 -07:00 committed by GitHub
parent 884a82b61a
commit a8d90ccb2c
1 changed files with 2 additions and 1 deletions

View File

@ -107,7 +107,8 @@ A HTTP check:
"check": {
"id": "api",
"name": "HTTP API on port 5000",
"http": "http://localhost:5000/health",
"http": "https://localhost:5000/health",
"tls_skip_verify": false,
"method": "POST",
"header": {"x-foo":["bar", "baz"]},
"interval": "10s",