Przeglądaj źródła

Maybe don't name all certs '*.pem'

master
Chris Smith 5 lat temu
rodzic
commit
89c69d7c50
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      dotege.go

+ 1
- 1
dotege.go Wyświetl plik

@@ -265,7 +265,7 @@ func deployCertForContainer(container *Container) bool {
265 265
 }
266 266
 
267 267
 func deployCert(certificate *SavedCertificate) bool {
268
-	name := fmt.Sprintf("%s.pem", strings.ReplaceAll("*", "_", certificate.Domains[0]))
268
+	name := fmt.Sprintf("%s.pem", strings.ReplaceAll(certificate.Domains[0], "*", "_"))
269 269
 	target := path.Join(config.DefaultCertDestination, name)
270 270
 	content := append(certificate.Certificate, certificate.PrivateKey...)
271 271
 

Ładowanie…
Anuluj
Zapisz