From 48ef7c7313735dcf285c47e6b9174ffcc9e1281f Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Fri, 30 Jul 2021 12:38:29 -0400 Subject: [PATCH] #126: Update mistake in documentation --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ada81b4..0078f727 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ the client used to send the request. | Parameter | Description | Default | |:-------------------------|:----------------------------------------------------------------------------- |:-------------- | | `client.insecure` | Whether to skip verifying the server's certificate chain and host name. | `false` | -| `client.ignore-follow` | Whether to ignore redirects (true) or follow them (false, default). | `false` | +| `client.ignore-redirect` | Whether to ignore redirects (true) or follow them (false, default). | `false` | | `client.timeout` | Duration before timing out. | `10s` | Note that some of these parameters are ignored based on the type of service. For instance, there's no certificate involved @@ -259,7 +259,7 @@ This default configuration is as follows: ```yaml client: insecure: false - ignore-follow: false + ignore-redirect: false timeout: 10s ``` Note that this configuration is only available under `services[]`, `alerting.mattermost` and `alerting.custom`. @@ -271,7 +271,7 @@ services: url: "https://twinnation.org/health" client: insecure: false - ignore-follow: false + ignore-redirect: false timeout: 10s conditions: - "[STATUS] == 200"