summaryrefslogtreecommitdiff
path: root/modules/caddytls/standardstek
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-06-03 15:35:14 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-06-03 15:35:14 -0600
commitf064889a4f6230fec37da021087b6e2bfb29cc58 (patch)
tree2893adb470fd695d03afc84df058b444be742884 /modules/caddytls/standardstek
parent34399332354b5cbc742200ef11aa33f199ba6755 (diff)
Customize admin endpoint address with -listen flag
This is a temporary holdover for development purposes
Diffstat (limited to 'modules/caddytls/standardstek')
-rw-r--r--modules/caddytls/standardstek/stek.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddytls/standardstek/stek.go b/modules/caddytls/standardstek/stek.go
index 46ac786..a086872 100644
--- a/modules/caddytls/standardstek/stek.go
+++ b/modules/caddytls/standardstek/stek.go
@@ -23,7 +23,7 @@ type standardSTEKProvider struct {
// Initialize sets the configuration for s and returns the starting keys.
func (s *standardSTEKProvider) Initialize(config *caddytls.SessionTicketService) ([][32]byte, error) {
- // keep a reference to the config, we'll need when rotating keys
+ // keep a reference to the config; we'll need it when rotating keys
s.stekConfig = config
itvl := time.Duration(s.stekConfig.RotationInterval)