mirror of https://github.com/caddyserver/caddy.git
reverse_proxy: Add port to upstream address if only implied in scheme
This commit is contained in:
parent
d55fa68902
commit
cb25dd72ab
|
@ -18,6 +18,7 @@ import (
|
|||
"encoding/json"
|
||||
"flag"
|
||||
"fmt"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
|
@ -80,6 +81,14 @@ func cmdReverseProxy(fs caddycmd.Flags) (int, error) {
|
|||
return caddy.ExitCodeFailedStartup, fmt.Errorf("parsing 'to' URL: %v", err)
|
||||
}
|
||||
|
||||
if toURL.Port() == "" {
|
||||
toPort := "80"
|
||||
if toURL.Scheme == "https" {
|
||||
toPort = "443"
|
||||
}
|
||||
toURL.Host = net.JoinHostPort(toURL.Host, toPort)
|
||||
}
|
||||
|
||||
ht := HTTPTransport{}
|
||||
if toURL.Scheme == "https" {
|
||||
ht.TLS = new(TLSConfig)
|
||||
|
|
Loading…
Reference in New Issue