]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
doh-insecure.md: expand
authorDaniel Stenberg <daniel@haxx.se>
Wed, 5 Jun 2024 08:18:21 +0000 (10:18 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 5 Jun 2024 08:59:48 +0000 (10:59 +0200)
Closes #13889

docs/cmdline-opts/doh-insecure.md

index 684428ddf7ec15ed67c9947886942a464852c4ee..72f3cb77252bb20784ca18b4dab2cba768ffacdc 100644 (file)
@@ -8,10 +8,20 @@ Category: dns tls
 Multi: boolean
 See-also:
   - doh-url
+  - insecure
+  - proxy-insecure
 Example:
   - --doh-insecure --doh-url https://doh.example $URL
 ---
 
 # `--doh-insecure`
 
-Same as --insecure but used for DoH (DNS-over-HTTPS).
+By default, every connection curl makes to a DoH server is verified to be
+secure before the transfer takes place. This option tells curl to skip the
+verification step and proceed without checking.
+
+**WARNING**: using this option makes the DoH transfer and name resolution
+insecure.
+
+This option is equivalent to --insecure and --proxy-insecure but used for DoH
+(DNS-over-HTTPS) only.