From 68a8219fa4048b24a4ac9bedba59a9555dae3385 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Wed, 10 Aug 2022 00:08:12 -0400 Subject: [PATCH] tls: Clarify `internal` shortcut limitations (#251) --- src/docs/markdown/caddyfile/directives/tls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/markdown/caddyfile/directives/tls.md b/src/docs/markdown/caddyfile/directives/tls.md index d44d700..19de6a3 100644 --- a/src/docs/markdown/caddyfile/directives/tls.md +++ b/src/docs/markdown/caddyfile/directives/tls.md @@ -47,7 +47,7 @@ tls [internal|] | [ ] { } ``` -- **internal** means to use Caddy's internal, locally-trusted CA to produce certificates for this site. +- **internal** means to use Caddy's internal, locally-trusted CA to produce certificates for this site. To further configure the [`internal`](#internal) issuer, use the [`issuer`](#issuer) subdirective. - **<email>** is the email address to use for the ACME account managing the site's certificates. - **<cert_file>** and **<key_file>** are the paths to the certificate and private key PEM files. Specifying just one is invalid. - **protocols** specifies the minimum and maximum protocol versions. Default min: `tls1.2`. Default max: `tls1.3`