From 8190e819e8cbe9004fbbb760645ca9032f629491 Mon Sep 17 00:00:00 2001 From: Adnan Maolood Date: Tue, 23 Feb 2021 09:08:44 -0500 Subject: [PATCH] server: Mention certificate store --- server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server.go b/server.go index cfb1e61..c98b8d7 100644 --- a/server.go +++ b/server.go @@ -38,6 +38,9 @@ type Server struct { // // If GetCertificate is nil or returns nil, then no certificate // will be used and the connection will be aborted. + // + // See the certificate submodule for a certificate store that creates + // and rotates certificates as needed. GetCertificate func(hostname string) (*tls.Certificate, error) // ErrorLog specifies an optional logger for errors accepting connections,