reverseproxy icon indicating copy to clipboard operation
reverseproxy copied to clipboard

a minimalist http/https proxy library for golang

Results 4 reverseproxy issues
Sort by recently updated
recently updated
newest added

If the request that we have to proxy already has an IP in the `X-Forwarded-For` header the concatenation is wrong Example instead of ``` 1.1.1.1, 8.8.8.8 ``` It forwards ```...

Hi! Seems that it's OK for a small customisable lib out here, but what about websockets? Would they being redirected the same way? Thank you!

There will be a lot of concurrency when it reaches 1000 http: proxy error: context canceled

this doesnt work with multipart form you can test to forward to http://www.md5online.org/md5-encrypt.html code: ``` package main import ( "net/http" "net/url" "github.com/cssivision/reverseproxy" ) func main() { http.ListenAndServe(":9595", http.HandlerFunc(func(w http.ResponseWriter, r...