Explorar el Código

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

master
Chris Smith hace 5 años
padre
commit
89c69d7c50
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      dotege.go

+ 1
- 1
dotege.go Ver fichero

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

Loading…
Cancelar
Guardar