aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index f13605e..bbfac30 100644
--- a/main.go
+++ b/main.go
@@ -426,10 +426,10 @@ func proxyGemini(req gemini.Request, external bool, root *url.URL,
w.Write([]byte(fmt.Sprintf("This page is redirecting you to %s", next.String())))
return
}
- next.Host = r.URL.Host
if external {
next.Path = fmt.Sprintf("/x/%s/%s", next.Host, next.Path)
}
+ next.Host = r.URL.Host
next.Scheme = r.URL.Scheme
w.Header().Add("Location", next.String())
w.WriteHeader(http.StatusFound)