From 8e6482173f035777edee9fc997d941c853bb8287 Mon Sep 17 00:00:00 2001 From: IndeedNotJames <55066419+IndeedNotJames@users.noreply.github.com> Date: Mon, 14 Mar 2022 08:08:45 +0100 Subject: [PATCH] docs: fix `dns_challenge_override_domain` typo (#218) --- src/docs/markdown/caddyfile/directives/tls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/directives/tls.md b/src/docs/markdown/caddyfile/directives/tls.md index 593fcf3..3399e89 100644 --- a/src/docs/markdown/caddyfile/directives/tls.md +++ b/src/docs/markdown/caddyfile/directives/tls.md @@ -31,7 +31,7 @@ tls [internal|] | [ ] { ca_root key_type ed25519|p256|p384|rsa2048|rsa4096 dns [] - dns_challenge_domain_override + dns_challenge_override_domain resolvers eab on_demand @@ -81,7 +81,7 @@ tls [internal|] | [ ] { - **ca_root** specifies a PEM file that contains a trusted root certificate for the ACME CA endpoint, if not in the system trust store. - **key_type** is the type of key to use when generating CSRs. Only set this if you have a specific requirement. - **dns** enables the [DNS challenge](/docs/automatic-https#dns-challenge) using the specified provider plugin, which must be plugged in from one of the [`caddy-dns`](https://github.com/caddy-dns) repositories. Each provider plugin may have their own syntax following their name; refer to their docs for details. Maintaining support for each DNS provider is a community effort. [Learn how to enable the DNS challenge for your provider at our wiki.](https://caddy.community/t/how-to-use-dns-provider-modules-in-caddy-2/8148) -- **dns_challenge_domain_override** overrides the domain to use for the DNS challenge. This is to delegate the challenge to a different domain, e.g. one whose DNS provider has a [`caddy-dns`](https://github.com/caddy-dns) plugin. +- **dns_challenge_override_domain** overrides the domain to use for the DNS challenge. This is to delegate the challenge to a different domain, e.g. one whose DNS provider has a [`caddy-dns`](https://github.com/caddy-dns) plugin. - **resolvers** customizes the DNS resolvers used when performing the DNS challenge; these take precedence over system resolvers or any default ones. If set here, the resolvers will propagate to all configured certificate issuers. - **eab** configures ACME external account binding (EAB) for this site, using the key ID and MAC key provided by your CA. - **on_demand** enables [on-demand TLS](/docs/automatic-https#on-demand-tls) for the hostnames given in the site block's address(es). **Security warning:** Doing so in production is insecure unless you also configure the [`on_demand_tls` global option](https://caddyserver.com/docs/caddyfile/options#on-demand-tls) to mitigate abuse.