Skip to content

Commit

Permalink
📝 Add docs for IPV6
Browse files Browse the repository at this point in the history
docs: added `ipv6: true` example
  • Loading branch information
AnandChowdhary committed Dec 13, 2023
2 parents abbcb07 + e0b2246 commit e23a045
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,27 @@ sites:
port: 53
```

You can also use hostnames with "tcp-ping":

```yaml
sites:
- name: Google DNS
check: "tcp-ping"
url: dns.google
port: 53
```

If you want to test only IPv6 for specific hostnames (e.g. use only the AAAA DNS records), then set the `ipv6` flag to `true`:

```yaml
sites:
- name: Google DNS
check: "tcp-ping"
url: dns.google
port: 53
ipv6: true
```

#### Secret URLs

If you don't want to show a URL publicly, you can use repository secrets (see [Creating and storing encrypted secrets](https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets)). Instead of the plain text URL, add the name of the secret prefixed with a $ character:
Expand Down

0 comments on commit e23a045

Please sign in to comment.