diff options
author | 2020-02-18 14:08:10 +0700 | |
---|---|---|
committer | 2020-02-18 08:08:10 +0100 | |
commit | c8a6b16d86a5fadc8b4dba9ce3c6e65e12fd5b3a (patch) | |
tree | 050e2bbb7ef0b87b2c0d5b369df1ebdea313380f /plugin/pkg/fall/fall.go | |
parent | eebf6b658bdf254d0599465b05aa02adac454957 (diff) | |
download | coredns-c8a6b16d86a5fadc8b4dba9ce3c6e65e12fd5b3a.tar.gz coredns-c8a6b16d86a5fadc8b4dba9ce3c6e65e12fd5b3a.tar.zst coredns-c8a6b16d86a5fadc8b4dba9ce3c6e65e12fd5b3a.zip |
Replacing 'HTTP' by 'HTTPS' for securing links (#3682)
Currently, when we access github.com with HTTP, it is redirected to HTTPS automatically. So this commit aims to replace http://github.com by https://github.com for security.
Signed-off-by: Kim Bao Long <longkb@vn.fujitsu.com>
Diffstat (limited to 'plugin/pkg/fall/fall.go')
-rw-r--r-- | plugin/pkg/fall/fall.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/pkg/fall/fall.go b/plugin/pkg/fall/fall.go index 067deb9a6..6d0463fd2 100644 --- a/plugin/pkg/fall/fall.go +++ b/plugin/pkg/fall/fall.go @@ -7,7 +7,7 @@ // // The take away: be mindful of this and don't blindly assume it's a good feature to have in your plugin. // -// See http://github.com/coredns/coredns/issues/2723 for some discussion on this, which includes this quote: +// See https://github.com/coredns/coredns/issues/2723 for some discussion on this, which includes this quote: // // TL;DR: `fallthrough` is indeed risky and hackish, but still a good feature of CoreDNS as it allows to quickly answer boring edge cases. // |