From 639c76b54c7e923485739f694feab16dfa9df146 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Tue, 15 Jun 2021 16:10:28 -0400 Subject: [PATCH] docs: Add `skip_install_trust` global option (#171) --- src/docs/markdown/caddyfile/options.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/docs/markdown/caddyfile/options.md b/src/docs/markdown/caddyfile/options.md index fd40424..890f373 100644 --- a/src/docs/markdown/caddyfile/options.md +++ b/src/docs/markdown/caddyfile/options.md @@ -47,6 +47,7 @@ Possible options are: email default_sni local_certs + skip_install_trust acme_ca acme_ca_root acme_eab @@ -142,6 +143,9 @@ Sets a default TLS ServerName for when clients do not use SNI in their ClientHel ##### `local_certs` Causes all certificates to be issued internally by default, rather than through a (public) ACME CA such as Let's Encrypt. This is useful in development environments. +##### `skip_install_trust` +Skips the attempts to install the local CA's root into the system trust store, as well as into Java and Mozilla Firefox trust stores. + ##### `acme_ca` Specifies the URL to the ACME CA's directory. It is strongly recommended to set this to Let's Encrypt's [staging endpoint](https://letsencrypt.org/docs/staging-environment/) for testing or development. Default: ZeroSSL and Let's Encrypt's production endpoints.