0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-30 22:34:15 -05:00

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)
}