-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
39 lines (33 loc) · 881 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main
import (
"crypto/tls"
"flag"
"github.com/elazarl/goproxy"
"log"
"net/http"
"net/url"
)
func main() {
upstreamProxy := flag.String("proxy", "", "upstream proxy")
addr := flag.String("addr", ":8080", "local addr, as http proxy")
flag.Parse()
proxyURL, err := url.Parse(*upstreamProxy)
if err != nil {
panic(err)
}
if proxyURL.Scheme == "http" {
panic("don't waste time, it's already http proxy")
}
proxy := goproxy.NewProxyHttpServer()
proxy.Tr = &http.Transport{
Proxy: http.ProxyURL(proxyURL),
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
//proxy.ConnectDial = proxy.NewConnectDialToProxy(*upstreamProxy)
//proxy.OnRequest().DoFunc(
// func(r *http.Request, ctx *goproxy.ProxyCtx) (*http.Request, *http.Response) {
// return r, nil
// })
proxy.Verbose = true
log.Fatal(http.ListenAndServe(*addr, proxy))
}