diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main.go | 33 |
3 files changed, 36 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4345043 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/powxy diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1810daf --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +powxy: *.go + go build -o powxy @@ -0,0 +1,33 @@ +package main + +import ( + "io" + "log" + "maps" + "net/http" +) + +var client = http.Client{ + CheckRedirect: func(req *http.Request, via []*http.Request) error { return http.ErrUseLastResponse }, +} + +func main() { + log.Fatal(http.ListenAndServe(":8081", http.HandlerFunc(func(writer http.ResponseWriter, request *http.Request) { + log.Println(request.RemoteAddr, request.RequestURI) + + request.Host = "127.0.0.1:8080" + request.URL.Host = "127.0.0.1:8080" + request.URL.Scheme = "http" + request.RequestURI = "" + + response, err := client.Do(request) + if err != nil { + http.Error(writer, err.Error(), http.StatusBadGateway) + return + } + + maps.Copy(writer.Header(), response.Header) + writer.WriteHeader(response.StatusCode) + io.Copy(writer, response.Body) + }))) +} |