From fde9a7c4f1fcc1273953b29af67d5c3f4ed32b22 Mon Sep 17 00:00:00 2001 From: Eric Date: Sun, 7 Jul 2019 16:29:43 -0700 Subject: [PATCH] Add download location for CentOS/RHEL/Fedora Followed this doc on my Pi-Hole running on top of CentOS 7. Everything works just fine the only thing missing was instructions on where to get the CentOS RPM. --- docs/guides/dns-over-https.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/guides/dns-over-https.md b/docs/guides/dns-over-https.md index 465533d..1613e5f 100644 --- a/docs/guides/dns-over-https.md +++ b/docs/guides/dns-over-https.md @@ -22,11 +22,19 @@ The installation is fairly straightforward, however be aware of what architectur Download the installer package, then use `apt-get` to install the package along with any dependencies. Proceed to run the binary with the `-v` flag to check it is all working. ``` +# For Debian/Ubuntu wget https://bin.equinox.io/c/VdrWdbjqyF/cloudflared-stable-linux-amd64.deb sudo apt-get install ./cloudflared-stable-linux-amd64.deb cloudflared -v + +# For CentOS/RHEL/Fedora +wget https://bin.equinox.io/c/VdrWdbjqyF/cloudflared-stable-linux-amd64.rpm +sudo yum install ./cloudflared-stable-linux-amd64.rpm +cloudflared -v ``` +**Note:** Binaries for other operating systems can be found here: https://developers.cloudflare.com/argo-tunnel/downloads/ + #### ARM architecture (Raspberry Pi) Here we are downloading the precompiled binary and copying it to the `/usr/local/bin/` directory to allow execution by the cloudflared user. Proceed to run the binary with the `-v` flag to check it is all working.