aboutsummaryrefslogtreecommitdiff
path: root/proxy.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 21:47:40 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 22:02:18 +0800
commitdbfadc5a7e5bd3163b49878994063cd6d869fe6a (patch)
tree5200e50de2b41a1f7e4da805fea1234141174e04 /proxy.go
parentcsolver: Remove, it's not needed anymore (diff)
downloadpowxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.gz
powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.zst
powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.zip
Refactorv0.1.13
Diffstat (limited to '')
-rw-r--r--proxy.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/proxy.go b/proxy.go
index 2a56411..19b9afd 100644
--- a/proxy.go
+++ b/proxy.go
@@ -12,6 +12,8 @@ import (
var reverseProxy *httputil.ReverseProxy
+// This init sets up the reverse proxy. Go's NewSingleHostReverseProxy is
+// sufficient for our use case.
func init() {
parsedURL, err := url.Parse(destHost)
if err != nil {
@@ -20,6 +22,7 @@ func init() {
reverseProxy = httputil.NewSingleHostReverseProxy(parsedURL)
}
+// proxyRequest proxies the incoming request to the destination host.
func proxyRequest(writer http.ResponseWriter, request *http.Request) {
reverseProxy.ServeHTTP(writer, request)
}