From 5ac67cab2a5146c271a71253b0e7bc39376e3102 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Thu, 9 Apr 2020 19:01:40 -0400 Subject: [PATCH] docs: Add `key_type` global option --- src/docs/markdown/caddyfile/options.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/docs/markdown/caddyfile/options.md b/src/docs/markdown/caddyfile/options.md index ff7d326..01cf177 100644 --- a/src/docs/markdown/caddyfile/options.md +++ b/src/docs/markdown/caddyfile/options.md @@ -39,6 +39,7 @@ Possible options are: burst } local_certs + key_type } ``` @@ -56,4 +57,5 @@ Possible options are: - **on_demand_tls** configures [On-Demand TLS](/docs/automatic-https#on-demand-tls) where it is enabled, but does not enable it (to enable it, use the [on_demand `tls` subdirective](/docs/caddyfile/directives/tls#syntax)). Highly recommended if using in production environments, to prevent abuse. - **ask** will cause Caddy to make an HTTP request to the given URL with a query string of `?domain=` containing the value of the domain name. If the endpoint returns 200 OK, Caddy will be authorized to obtain a certificate for that name. - **interval** and **burst** allows `` certificate operations within `` interval. -- **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. \ No newline at end of file +- **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. +- **key_type** customizes the type of key used to generate certificates. Supported values: `ed25519`, `p256`, `p384`, `rsa2048`, `rsa4096`.