diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 00:54:04 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 00:54:04 +0800 |
commit | 584c969a7f122f29e6fed923586333ab38cb3d6a (patch) | |
tree | 13f7609ce25c63748cc2511d253f253ccbb454b2 /main.go | |
parent | Initial commit (diff) | |
download | powxy-584c969a7f122f29e6fed923586333ab38cb3d6a.tar.gz powxy-584c969a7f122f29e6fed923586333ab38cb3d6a.tar.zst powxy-584c969a7f122f29e6fed923586333ab38cb3d6a.zip |
Basic reverse proxy
Diffstat (limited to '')
-rw-r--r-- | main.go | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -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) + }))) +} |