Skip to content

Instantly share code, notes, and snippets.

@quangvo09
Forked from seblegall/reverseproxy.go
Created August 17, 2022 11:24
Show Gist options
  • Save quangvo09/26f145986360de258af4493b25f147bb to your computer and use it in GitHub Desktop.
Save quangvo09/26f145986360de258af4493b25f147bb to your computer and use it in GitHub Desktop.
A reverse proxy in Golang using Gin
package main
import (
"fmt"
"net/http"
"net/http/httputil"
"net/url"
"github.com/gin-gonic/gin"
)
func proxy(c *gin.Context) {
remote, err := url.Parse("http://myremotedomain.com")
if err != nil {
panic(err)
}
proxy := httputil.NewSingleHostReverseProxy(remote)
proxy.Director = func(req *http.Request) {
req.Header = c.Request.Header
req.Host = remote.Host
req.URL.Scheme = remote.Scheme
req.URL.Host = remote.Host
req.URL.Path = c.Param("proxyPath")
}
proxy.ServeHTTP(c.Writer, c.Request)
}
func main() {
r := gin.Default()
r.Any("/*proxyPath", proxy)
r.Run(":8080")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment