Skip to content

Instantly share code, notes, and snippets.

@seblegall
Last active April 23, 2024 10:29
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save seblegall/2a2697fc56417b24a7ec49eb4a8d7b1b to your computer and use it in GitHub Desktop.
Save seblegall/2a2697fc56417b24a7ec49eb4a8d7b1b 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")
}
@hoiama
Copy link

hoiama commented Jul 22, 2022

Thank you very very much to your help.

@quangvo09
Copy link

Thank you very much <3

@Nisarg-Philips
Copy link

Getting lot of Bad Gateway issue and [EOF](httputil: ReverseProxy read error during body copy: unexpected EOF) error in it

@SbstnErhrdt
Copy link

Thank you.
PS: This also works with websockets

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment