2021-07-22 15:23:24 +02:00
|
|
|
package encryption
|
|
|
|
|
|
|
|
import (
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"golang.org/x/crypto/acme/autocert"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
2021-08-07 12:26:07 +02:00
|
|
|
// CreateCertManager wraps common logic of generating Let's encrypt certificate.
|
|
|
|
func CreateCertManager(datadir string, letsencryptDomain string) *autocert.Manager {
|
2021-07-22 15:23:24 +02:00
|
|
|
certDir := filepath.Join(datadir, "letsencrypt")
|
|
|
|
|
|
|
|
if _, err := os.Stat(certDir); os.IsNotExist(err) {
|
|
|
|
err = os.MkdirAll(certDir, os.ModeDir)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("failed creating Let's encrypt certdir: %s: %v", certDir, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("running with Let's encrypt with domain %s. Cert will be stored in %s", letsencryptDomain, certDir)
|
|
|
|
|
2021-08-07 12:26:07 +02:00
|
|
|
certManager := &autocert.Manager{
|
2021-07-22 15:23:24 +02:00
|
|
|
Prompt: autocert.AcceptTOS,
|
|
|
|
Cache: autocert.DirCache(certDir),
|
|
|
|
HostPolicy: autocert.HostWhitelist(letsencryptDomain),
|
|
|
|
}
|
|
|
|
|
2021-08-07 12:26:07 +02:00
|
|
|
return certManager
|
2021-07-22 15:23:24 +02:00
|
|
|
}
|