diff options
author | Matthew Holt <[email protected]> | 2020-03-31 17:56:36 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2020-03-31 17:56:36 -0600 |
commit | 244b839f9813ae68c5527e6aadadaff0642c1a00 (patch) | |
tree | 66c0df8bbf728eed7c511f1023e84b6d4d34ac31 /caddy.go | |
parent | 904d9cab390007610a65f648d05314f5826c3979 (diff) | |
download | caddy-244b839f9813ae68c5527e6aadadaff0642c1a00.tar.gz caddy-244b839f9813ae68c5527e6aadadaff0642c1a00.zip |
pki: Add trust subcommand to install root cert (closes #3204)
Diffstat (limited to 'caddy.go')
-rw-r--r-- | caddy.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -372,7 +372,7 @@ func run(newCfg *Config, start bool) error { } if newCfg.storage == nil { - newCfg.storage = &certmagic.FileStorage{Path: AppDataDir()} + newCfg.storage = DefaultStorage } certmagic.Default.Storage = newCfg.storage |