aboutsummaryrefslogtreecommitdiff
path: root/cmd/acme/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/acme/config.go')
-rw-r--r--cmd/acme/config.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/acme/config.go b/cmd/acme/config.go
index 8149393..f1b6999 100644
--- a/cmd/acme/config.go
+++ b/cmd/acme/config.go
@@ -15,7 +15,9 @@ import (
const (
defKeySize = 2048
- defGrace = time.Hour * 24 * 7
+ day = time.Hour * 24
+ week = day * 7
+ defGrace = week
keyPath = "private"
crtPath = "certs"
)