mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			576 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			576 B
		
	
	
	
		
			Go
		
	
	
package factory
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"net/url"
 | 
						|
 | 
						|
	portainer "github.com/portainer/portainer/api"
 | 
						|
	"github.com/portainer/portainer/api/dataservices"
 | 
						|
	"github.com/portainer/portainer/api/http/proxy/factory/azure"
 | 
						|
)
 | 
						|
 | 
						|
func newAzureProxy(endpoint *portainer.Endpoint, dataStore dataservices.DataStore) (http.Handler, error) {
 | 
						|
	remoteURL, err := url.Parse(azureAPIBaseURL)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	proxy := NewSingleHostReverseProxyWithHostHeader(remoteURL)
 | 
						|
	proxy.Transport = azure.NewTransport(&endpoint.AzureCredentials, dataStore, endpoint)
 | 
						|
	return proxy, nil
 | 
						|
}
 |