diff options
author | David Manouchehri <[email protected]> | 2022-09-16 16:05:37 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-16 14:05:37 -0600 |
commit | 616418281b49ed1052ee395b674d8df97c820b11 (patch) | |
tree | b7bfa98865f9dc283a199cad2db2f774522d084d /caddyconfig/httpcaddyfile/options.go | |
parent | 74547f5bedafcb59fc25f14b43301f33a40f9416 (diff) | |
download | caddy-616418281b49ed1052ee395b674d8df97c820b11.tar.gz caddy-616418281b49ed1052ee395b674d8df97c820b11.zip |
caddyhttp: Support TLS key logging for debugging (#4808)
* Add SSL key logging.
* Resolve merge conflict with master
* Add Caddyfile support; various fixes
* Also commit go.mod and go.sum, oops
* Appease linter
* Minor tweaks
* Add doc comment
Co-authored-by: Matt Holt <[email protected]>
Diffstat (limited to 'caddyconfig/httpcaddyfile/options.go')
-rw-r--r-- | caddyconfig/httpcaddyfile/options.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/caddyconfig/httpcaddyfile/options.go b/caddyconfig/httpcaddyfile/options.go index c41e8bc8a..1775c93b6 100644 --- a/caddyconfig/httpcaddyfile/options.go +++ b/caddyconfig/httpcaddyfile/options.go @@ -421,13 +421,13 @@ func parseOCSPStaplingOptions(d *caddyfile.Dispenser, _ any) (any, error) { // parseLogOptions parses the global log option. Syntax: // -// log [name] { -// output <writer_module> ... -// format <encoder_module> ... -// level <level> -// include <namespaces...> -// exclude <namespaces...> -// } +// log [name] { +// output <writer_module> ... +// format <encoder_module> ... +// level <level> +// include <namespaces...> +// exclude <namespaces...> +// } // // When the name argument is unspecified, this directive modifies the default // logger. |