From f999d58010a81a67096a50a0ccc8de8d5da254cf Mon Sep 17 00:00:00 2001 From: kqmaverick <121722567+kqmaverick@users.noreply.github.com> Date: Thu, 15 Jun 2023 12:38:39 -0700 Subject: [PATCH] docs(Blocky): fix setup guide line breaks (#9645) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Blocky setup guide is missing line breaks. Added using new method. ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ Co-authored-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> --- charts/enterprise/blocky/docs/setup-guide.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/charts/enterprise/blocky/docs/setup-guide.md b/charts/enterprise/blocky/docs/setup-guide.md index 20896ae2fd8..fa24b6bee17 100644 --- a/charts/enterprise/blocky/docs/setup-guide.md +++ b/charts/enterprise/blocky/docs/setup-guide.md @@ -8,30 +8,30 @@ Blocky has multiple DNS entries configured by default these can be overridden to Blocky supports 3 methods for upstream DNS. -UDP - Basic DNS -DoT - DNS over TLS -DoH - DNS over HTTPS +UDP - Basic DNS
+DoT - DNS over TLS
+DoH - DNS over HTTPS While UDP provides no security for DNS both DoT and DoH will encrypt DNS request. DoH has the added benefit of privacy since DNS traffic will appear as HTTPS traffic. ### UDP DNS Setup -Google DNS: `8.8.8.8` `8.8.4.4` -Cloudflare DNS: `1.1.1.1` `1.0.0.1` +Google DNS: `8.8.8.8` `8.8.4.4`
+Cloudflare DNS: `1.1.1.1` `1.0.0.1` ![blocky-udp-upstream-google](./img/blocky-udp-upstream-google.png) ### DoT DNS Setup -Google DNS ([Bootstrap DNS Required](#bootstrap-dns)): `tcp-tls:dns.google:853` -Cloudflare DNS: `tcp-tls:1.1.1.1:853` `tcp-tls:1.0.0.1:853` +Google DNS ([Bootstrap DNS Required](#bootstrap-dns)): `tcp-tls:dns.google:853`
+Cloudflare DNS: `tcp-tls:1.1.1.1:853` `tcp-tls:1.0.0.1:853` ![blocky-dot-upstream-google](./img/blocky-dot-upstream-google.png) ### DoH Upstream -Google DNS ([Bootstrap DNS Required](#bootstrap-dns)): `https://dns.google/dns-query` -Cloudflare DNS: `https://1.1.1.1/dns-query` `https://1.0.0.1/dns-query` +Google DNS ([Bootstrap DNS Required](#bootstrap-dns)): `https://dns.google/dns-query`
+Cloudflare DNS: `https://1.1.1.1/dns-query` `https://1.0.0.1/dns-query` ![blocky-doh-upstream-google](./img/blocky-doh-upstream-google.png)