diff options
Diffstat (limited to 'caddyconfig/httpcaddyfile')
-rw-r--r-- | caddyconfig/httpcaddyfile/pkiapp.go | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/caddyconfig/httpcaddyfile/pkiapp.go b/caddyconfig/httpcaddyfile/pkiapp.go index f8aba9f..a67ac99 100644 --- a/caddyconfig/httpcaddyfile/pkiapp.go +++ b/caddyconfig/httpcaddyfile/pkiapp.go @@ -26,23 +26,23 @@ func init() { // parsePKIApp parses the global log option. Syntax: // -// pki { -// ca [<id>] { -// name <name> -// root_cn <name> -// intermediate_cn <name> -// root { -// cert <path> -// key <path> -// format <format> -// } -// intermediate { -// cert <path> -// key <path> -// format <format> -// } -// } -// } +// pki { +// ca [<id>] { +// name <name> +// root_cn <name> +// intermediate_cn <name> +// root { +// cert <path> +// key <path> +// format <format> +// } +// intermediate { +// cert <path> +// key <path> +// format <format> +// } +// } +// } // // When the CA ID is unspecified, 'local' is assumed. func parsePKIApp(d *caddyfile.Dispenser, existingVal any) (any, error) { |