diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2019-06-24 12:16:10 -0600 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2019-06-24 12:16:10 -0600 |
commit | 38677aaa58eb76a416fa42146956f3e3a5981e75 (patch) | |
tree | a782a862b7e552d1bdaeebf3514b75392a06f4b4 /modules/caddyhttp | |
parent | d49f762f6d9cdc2e92e8de40f0b0e99a9d0c4fc9 (diff) |
caddytls: Support tags for manually-loaded certificates
Diffstat (limited to 'modules/caddyhttp')
-rw-r--r-- | modules/caddyhttp/caddyhttp.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/caddyhttp/caddyhttp.go b/modules/caddyhttp/caddyhttp.go index 68568a9..036a3ab 100644 --- a/modules/caddyhttp/caddyhttp.go +++ b/modules/caddyhttp/caddyhttp.go @@ -243,6 +243,7 @@ func (app *App) automaticHTTPS() error { }) // manage their certificates + log.Printf("[INFO] Enabling automatic HTTPS for %v", domains) err := tlsApp.Manage(domains) if err != nil { return fmt.Errorf("%s: managing certificate for %s: %s", srvName, domains, err) |