From cb25dd72abec854b359ca8194cb07b2571d950d4 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 4 Nov 2019 12:18:42 -0700 Subject: reverse_proxy: Add port to upstream address if only implied in scheme --- modules/caddyhttp/reverseproxy/command.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'modules') diff --git a/modules/caddyhttp/reverseproxy/command.go b/modules/caddyhttp/reverseproxy/command.go index e48b3e8..0c67428 100644 --- a/modules/caddyhttp/reverseproxy/command.go +++ b/modules/caddyhttp/reverseproxy/command.go @@ -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) -- cgit v1.2.3