mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-30 18:22:49 -04:00 
			
		
		
		
	reverseproxy: Wire up TLS options for H3 transport
This commit is contained in:
		
							parent
							
								
									c2ccf8690f
								
							
						
					
					
						commit
						f8861ca16b
					
				| @ -363,6 +363,13 @@ func (h *HTTPTransport) NewTransport(caddyCtx caddy.Context) (*http.Transport, e | |||||||
| 	// site owners  control the backends), so it must be exclusive | 	// site owners  control the backends), so it must be exclusive | ||||||
| 	if len(h.Versions) == 1 && h.Versions[0] == "3" { | 	if len(h.Versions) == 1 && h.Versions[0] == "3" { | ||||||
| 		h.h3Transport = new(http3.RoundTripper) | 		h.h3Transport = new(http3.RoundTripper) | ||||||
|  | 		if h.TLS != nil { | ||||||
|  | 			var err error | ||||||
|  | 			h.h3Transport.TLSClientConfig, err = h.TLS.MakeTLSClientConfig(caddyCtx) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return nil, fmt.Errorf("making TLS client config for HTTP/3 transport: %v", err) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
| 	} else if len(h.Versions) > 1 && sliceContains(h.Versions, "3") { | 	} else if len(h.Versions) > 1 && sliceContains(h.Versions, "3") { | ||||||
| 		return nil, fmt.Errorf("if HTTP/3 is enabled to the upstream, no other HTTP versions are supported") | 		return nil, fmt.Errorf("if HTTP/3 is enabled to the upstream, no other HTTP versions are supported") | ||||||
| 	} | 	} | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user