Browse Source
acmemanager: Use storage module key "module" instead of "system"
master
Matthew Holt
6 years ago
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5
1 changed files with
1 additions and
1 deletions
-
modules/caddytls/acmemanager.go
|
|
@ -77,7 +77,7 @@ func (m *ACMEManagerMaker) Provision(ctx caddy.Context) error { |
|
|
|
|
|
|
|
// policy-specific storage implementation
|
|
|
|
if m.Storage != nil { |
|
|
|
val, err := ctx.LoadModuleInline("system", "caddy.storage", m.Storage) |
|
|
|
val, err := ctx.LoadModuleInline("module", "caddy.storage", m.Storage) |
|
|
|
if err != nil { |
|
|
|
return fmt.Errorf("loading TLS storage module: %s", err) |
|
|
|
} |
|
|
|