diff options
author | 2024-03-08 04:24:38 +0900 | |
---|---|---|
committer | 2024-03-07 14:24:38 -0500 | |
commit | 62b23aeae613926af7eecb5aec9a06f57fa7b1a0 (patch) | |
tree | 2af6efeb458db1414ed43b44728d5c96878cc4f0 /plugin | |
parent | 5556180ac68675879503b1381eb6d80b62aeb1d7 (diff) | |
download | coredns-62b23aeae613926af7eecb5aec9a06f57fa7b1a0.tar.gz coredns-62b23aeae613926af7eecb5aec9a06f57fa7b1a0.tar.zst coredns-62b23aeae613926af7eecb5aec9a06f57fa7b1a0.zip |
fix broken link in webpage (#6488)
Signed-off-by: Masaki Nakano <admin@namachan10777.dev>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/tls/README.md | 2 | ||||
-rw-r--r-- | plugin/view/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/tls/README.md b/plugin/tls/README.md index 9d945b83e..1f42a7e0f 100644 --- a/plugin/tls/README.md +++ b/plugin/tls/README.md @@ -7,7 +7,7 @@ ## Description CoreDNS supports queries that are encrypted using TLS (DNS over Transport Layer Security, RFC 7858) -or are using gRPC (https://grpc.io/, not an IETF standard). Normally DNS traffic isn't encrypted at +or are using gRPC (https://grpc.io/ , not an IETF standard). Normally DNS traffic isn't encrypted at all (DNSSEC only signs resource records). The *tls* "plugin" allows you to configure the cryptographic keys that are needed for both diff --git a/plugin/view/README.md b/plugin/view/README.md index d33de8f13..50c56609c 100644 --- a/plugin/view/README.md +++ b/plugin/view/README.md @@ -93,7 +93,7 @@ Note that the regex pattern is enclosed in single quotes, and backslashes are es ## Expressions -To evaluate expressions, *view* uses the antonmedv/expr package (https://github.com/antonmedv/expr). +To evaluate expressions, *view* uses the antonmedv/expr package ( https://github.com/antonmedv/expr ). For example, an expression could look like: `(type() == 'A' && name() == 'example.com.') || client_ip() == '1.2.3.4'`. |