mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
acmemanager: Use storage module key "module" instead of "system"
This commit is contained in:
parent
9429c843c8
commit
79216d356c
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue