diff options
author | Matthew Holt <[email protected]> | 2021-04-01 12:49:51 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2021-04-01 12:49:51 -0600 |
commit | d21e88ae3a9d8d57c4d41c1c7c76c6a15f539898 (patch) | |
tree | f49a32bc328dff34df7ba139563f18571c8e5fd4 /modules/caddypki | |
parent | a0a7c60cb9e2305f9291fbff2779936b85aacaa7 (diff) | |
download | caddy-d21e88ae3a9d8d57c4d41c1c7c76c6a15f539898.tar.gz caddy-d21e88ae3a9d8d57c4d41c1c7c76c6a15f539898.zip |
Minor tweaks
Diffstat (limited to 'modules/caddypki')
-rw-r--r-- | modules/caddypki/ca.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/caddypki/ca.go b/modules/caddypki/ca.go index 957f07607..e3102fba1 100644 --- a/modules/caddypki/ca.go +++ b/modules/caddypki/ca.go @@ -51,10 +51,10 @@ type CA struct { // and Mozilla Firefox trust stores. Default: true. InstallTrust *bool `json:"install_trust,omitempty"` - // The root certificate to use; if empty, one will be generated. + // The root certificate to use; if null, one will be generated. Root *KeyPair `json:"root,omitempty"` - // The intermediate (signing) certificate; if empty, one will be generated. + // The intermediate (signing) certificate; if null, one will be generated. Intermediate *KeyPair `json:"intermediate,omitempty"` // Optionally configure a separate storage module associated with this |