diff options
author | Matthew Holt <[email protected]> | 2019-07-03 10:40:25 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2019-07-03 10:40:25 -0600 |
commit | 7512ea1a644e53ec5d2dacaf3c346ed5d89cf233 (patch) | |
tree | 0c113043e77ab25c820f94e14472a32f17d7ca36 /caddy.go | |
parent | 902ec3706207e3ead757fe48d994d35fcf11c73e (diff) | |
download | caddy-7512ea1a644e53ec5d2dacaf3c346ed5d89cf233.tar.gz caddy-7512ea1a644e53ec5d2dacaf3c346ed5d89cf233.zip |
Change storage module key from "system" to "module"
Diffstat (limited to 'caddy.go')
-rw-r--r-- | caddy.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) } |