fix HTTP->S redirects on standard port
Alan Pearce alan@alanpearce.eu
Wed, 03 Jul 2024 10:54:02 +0200
1 files changed, 6 insertions(+), 1 deletions(-)
jump to
M internal/server/tls.go → internal/server/tls.go
@@ -110,7 +110,12 @@ if err != nil { log.Warn("error splitting host and port", "error", err) host = s.config.BaseURL.Hostname() } - url.Host = net.JoinHostPort(host, s.config.BaseURL.Port()) + port := s.config.BaseURL.Port() + if port == "" { + url.Host = host + } else { + url.Host = net.JoinHostPort(host, s.config.BaseURL.Port()) + } http.Redirect(w, r, url.String(), http.StatusMovedPermanently) }) srv.Handler = httpMux