summaryrefslogtreecommitdiff
path: root/modules/caddytls/automation.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2020-03-26 14:02:29 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2020-03-26 14:02:29 -0600
commitea3688e1c057a042bbae97175f42eb4ec3029667 (patch)
treefda2b46b322872d7d24bba1bcc3d6983a597bb8d /modules/caddytls/automation.go
parentc87f82f0ce58ec714b3e13fbe69c322a0d612c67 (diff)
caddytls: Remove ManageSync
This seems unnecessary for now and we can always add it in later if people have a good reason to need it.
Diffstat (limited to 'modules/caddytls/automation.go')
-rw-r--r--modules/caddytls/automation.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/caddytls/automation.go b/modules/caddytls/automation.go
index fcf6454..24a21cb 100644
--- a/modules/caddytls/automation.go
+++ b/modules/caddytls/automation.go
@@ -97,15 +97,6 @@ type AutomationPolicy struct {
// load.
OnDemand bool `json:"on_demand,omitempty"`
- // If true, certificate management will be conducted
- // in the foreground; this will block config reloads
- // and return errors if there were problems with
- // obtaining or renewing certificates. This is often
- // not desirable, especially when serving sites out
- // of your control. Default: false
- // TODO: is this really necessary per-policy? why not a global setting...
- ManageSync bool `json:"manage_sync,omitempty"`
-
// Issuer stores the decoded issuer parameters. This is only
// used to populate an underlying certmagic.Config's Issuer
// field; it is not referenced thereafter.