소스 검색

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

master
Chris Smith 5 년 전
부모
커밋
89c69d7c50
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      dotege.go

+ 1
- 1
dotege.go 파일 보기

@@ -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…
취소
저장