Browse Source

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

master
Matthew Holt 6 years ago
parent
commit
7512ea1a64
No known key found for this signature in database GPG Key ID: 2A349DD577D586A5
  1. 2
      caddy.go

2
caddy.go

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

Loading…
Cancel
Save