Update cert and key path

This commit is contained in:
Melon 2024-08-13 00:01:52 +01:00
parent 2839abbf52
commit 76baa5f33f
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

View File

@ -76,8 +76,8 @@ func normalLoad(conf startUpConfig, wd string) {
log.Fatal("[Orchid] Failed to open database:", err)
}
certDir := filepath.Join(wd, "certs")
keyDir := filepath.Join(wd, "keys")
certDir := filepath.Join(wd, "renewal-certs")
keyDir := filepath.Join(wd, "renewal-keys")
wg := &sync.WaitGroup{}
acmeProv, err := httpAcme.NewHttpAcmeProvider(filepath.Join(wd, "tokens.yml"), conf.Acme.PresentUrl, conf.Acme.CleanUpUrl, conf.Acme.RefreshUrl)