summaryrefslogtreecommitdiff
path: root/caddyconfig/httpcaddyfile/options.go
diff options
context:
space:
mode:
authorDavid Manouchehri <manouchehri@riseup.net>2022-09-16 16:05:37 -0400
committerGitHub <noreply@github.com>2022-09-16 14:05:37 -0600
commit616418281b49ed1052ee395b674d8df97c820b11 (patch)
treeb7bfa98865f9dc283a199cad2db2f774522d084d /caddyconfig/httpcaddyfile/options.go
parent74547f5bedafcb59fc25f14b43301f33a40f9416 (diff)
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 <mholt@users.noreply.github.com>
Diffstat (limited to 'caddyconfig/httpcaddyfile/options.go')
-rw-r--r--caddyconfig/httpcaddyfile/options.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/caddyconfig/httpcaddyfile/options.go b/caddyconfig/httpcaddyfile/options.go
index c41e8bc..1775c93 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.