Last active
January 12, 2023 07:27
-
-
Save thezelus/d5ac9ec563b061c514dc to your computer and use it in GitHub Desktop.
golang NewSingleHostReverseProxy + gorilla mux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"net/http" | |
"net/http/httputil" | |
"net/url" | |
"github.com/gorilla/mux" | |
) | |
//Target url: https://httpbin.org/headers | |
//Url through proxy: http://localhost:3002/forward/headers | |
func main() { | |
target := "https://httpbin.org" | |
remote, err := url.Parse(target) | |
if err != nil { | |
panic(err) | |
} | |
proxy := httputil.NewSingleHostReverseProxy(remote) | |
r := mux.NewRouter() | |
r.HandleFunc("/forward/{rest:.*}", handler(proxy)) | |
http.Handle("/", r) | |
http.ListenAndServe(":3002", r) | |
} | |
func handler(p *httputil.ReverseProxy) func(http.ResponseWriter, *http.Request) { | |
return func(w http.ResponseWriter, r *http.Request) { | |
r.URL.Path = mux.Vars(r)["rest"] | |
p.ServeHTTP(w, r) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A more complete version of the above: