Change storage module key from "system" to "module"

This commit is contained in:
Matthew Holt 2019-07-03 10:40:25 -06:00
parent 902ec37062
commit 7512ea1a64
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5

View File

@ -84,7 +84,7 @@ func Run(newCfg *Config) error {
// set up storage and make it CertMagic's default storage, too
err = func() error {
if newCfg.StorageRaw != nil {
val, err := ctx.LoadModuleInline("system", "caddy.storage", newCfg.StorageRaw)
val, err := ctx.LoadModuleInline("module", "caddy.storage", newCfg.StorageRaw)
if err != nil {
return fmt.Errorf("loading storage module: %v", err)
}