Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
f24ecee6
Commit
f24ecee6
authored
Oct 21, 2015
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
letsencrypt: Basic renewal failover and better error handling
parent
c5635f21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
19 deletions
+30
-19
config/letsencrypt/renew.go
config/letsencrypt/renew.go
+30
-19
No files found.
config/letsencrypt/renew.go
View file @
f24ecee6
...
...
@@ -17,8 +17,10 @@ import (
func
keepCertificatesRenewed
(
configs
[]
server
.
Config
)
{
ticker
:=
time
.
Tick
(
renewInterval
)
for
range
ticker
{
if
err
:=
processCertificateRenewal
(
configs
);
err
!=
nil
{
log
.
Printf
(
"[ERROR] cert renewal: %v"
,
err
)
if
errs
:=
processCertificateRenewal
(
configs
);
len
(
errs
)
>
0
{
for
_
,
err
:=
range
errs
{
log
.
Printf
(
"[ERROR] cert renewal: %v
\n
"
,
err
)
}
}
}
}
...
...
@@ -26,11 +28,12 @@ func keepCertificatesRenewed(configs []server.Config) {
// checkCertificateRenewal loops through all configured
// sites and looks for certificates to renew. Nothing is mutated
// through this function. The changes happen directly on disk.
func
processCertificateRenewal
(
configs
[]
server
.
Config
)
error
{
func
processCertificateRenewal
(
configs
[]
server
.
Config
)
[]
error
{
var
errs
[]
error
log
.
Print
(
"[INFO] Processing certificate renewals..."
)
for
_
,
cfg
:=
range
configs
{
//
Check if this entry is TLS enabled and
managed by LE
//
Host must be TLS-enabled and have assets
managed by LE
if
!
cfg
.
TLS
.
Enabled
||
!
existingCertAndKey
(
cfg
.
Host
)
{
continue
}
...
...
@@ -38,11 +41,13 @@ func processCertificateRenewal(configs []server.Config) error {
// Read the certificate and get the NotAfter time.
certBytes
,
err
:=
ioutil
.
ReadFile
(
storage
.
SiteCertFile
(
cfg
.
Host
))
if
err
!=
nil
{
return
err
errs
=
append
(
errs
,
err
)
continue
// still have to check other certificates
}
expTime
,
err
:=
acme
.
GetPEMCertExpiration
(
certBytes
)
if
err
!=
nil
{
return
err
errs
=
append
(
errs
,
err
)
continue
}
// The time returned from the certificate is always in UTC.
...
...
@@ -50,23 +55,26 @@ func processCertificateRenewal(configs []server.Config) error {
// Directly convert it to days for the following checks.
daysLeft
:=
int
(
expTime
.
Sub
(
time
.
Now
()
.
UTC
())
.
Hours
()
/
24
)
// Renew
on two or less day
s remaining.
if
daysLeft
<=
2
{
log
.
Printf
(
"[
WARN
] There are %d days left on the certificate of %s. Trying to renew now."
,
daysLeft
,
cfg
.
Host
)
// Renew
with a week or les
s remaining.
if
daysLeft
<=
7
{
log
.
Printf
(
"[
INFO
] There are %d days left on the certificate of %s. Trying to renew now."
,
daysLeft
,
cfg
.
Host
)
client
,
err
:=
newClient
(
getEmail
(
cfg
))
if
err
!=
nil
{
return
err
errs
=
append
(
errs
,
err
)
continue
}
// Read metadata
metaBytes
,
err
:=
ioutil
.
ReadFile
(
storage
.
SiteMetaFile
(
cfg
.
Host
))
if
err
!=
nil
{
return
err
errs
=
append
(
errs
,
err
)
continue
}
privBytes
,
err
:=
ioutil
.
ReadFile
(
storage
.
SiteKeyFile
(
cfg
.
Host
))
if
err
!=
nil
{
return
err
errs
=
append
(
errs
,
err
)
continue
}
var
certMeta
acme
.
CertificateResource
...
...
@@ -78,17 +86,20 @@ func processCertificateRenewal(configs []server.Config) error {
// TODO: revokeOld should be an option in the caddyfile
newCertMeta
,
err
:=
client
.
RenewCertificate
(
certMeta
,
true
)
if
err
!=
nil
{
return
err
time
.
Sleep
(
10
*
time
.
Second
)
newCertMeta
,
err
=
client
.
RenewCertificate
(
certMeta
,
true
)
if
err
!=
nil
{
errs
=
append
(
errs
,
err
)
continue
}
}
saveCertsAndKeys
([]
acme
.
CertificateResource
{
newCertMeta
})
}
// Warn on 14 days remaining
if
daysLeft
<=
14
{
log
.
Printf
(
"[WARN] There are %d days left on the certificate of %s. Will renew on two days left.
\n
"
,
daysLeft
,
cfg
.
Host
)
}
else
if
daysLeft
<=
14
{
// Warn on 14 days remaining
log
.
Printf
(
"[WARN] There are %d days left on the certificate for %s. Will renew when 7 days remain.
\n
"
,
daysLeft
,
cfg
.
Host
)
}
}
return
nil
return
errs
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment