This commit is contained in:
		
							parent
							
								
									df72cf6211
								
							
						
					
					
						commit
						e2f39c2b64
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -24,10 +24,14 @@ func runLetsEncrypt(listenAddr, domain, directory, email string, m http.Handler) | |||
| 	enableHTTPChallenge := true | ||||
| 	enableTLSALPNChallenge := true | ||||
| 	altHTTPPort := 0 | ||||
| 	altTLSALPNPort := 0 | ||||
| 
 | ||||
| 	if p, err := strconv.Atoi(setting.PortToRedirect); err == nil { | ||||
| 		altHTTPPort = p | ||||
| 	} | ||||
| 	if p, err := strconv.Atoi(setting.HTTPPort); err == nil { | ||||
| 		altTLSALPNPort = p | ||||
| 	} | ||||
| 
 | ||||
| 	magic := certmagic.NewDefault() | ||||
| 	magic.Storage = &certmagic.FileStorage{Path: directory} | ||||
|  | @ -36,7 +40,8 @@ func runLetsEncrypt(listenAddr, domain, directory, email string, m http.Handler) | |||
| 		Agreed:                  setting.LetsEncryptTOS, | ||||
| 		DisableHTTPChallenge:    !enableHTTPChallenge, | ||||
| 		DisableTLSALPNChallenge: !enableTLSALPNChallenge, | ||||
| 		ListenHost:              listenAddr, | ||||
| 		ListenHost:              setting.HTTPAddr, | ||||
| 		AltTLSALPNPort:          altTLSALPNPort, | ||||
| 		AltHTTPPort:             altHTTPPort, | ||||
| 	}) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue