Total Pageviews

Wednesday, 10 October 2018

又一个http代理服务器程序-gohttpproxy

登陆linux vps.
先安装go环境。然后,
root@umh:~# cd $GOPATH
root@umh:~/go/gopath# go get -u -v github.com/netroby/gohttpproxy

在$GOPATH/bin/里面,就会生成可执行文件gohttpproxy:
root@umh:~# which gohttpproxy
/root/go/gopath/bin/gohttpproxy
root@umh:~#
root@umh:~# gohttpproxy -addr 0.0.0.0:5070
Now will connect parent proxy: 
2018/10/10 22:45:34 Starting proxy on : [::]:5070

不过 命令:gohttpproxy -addr 0.0.0.0:5070是运行在前台的,你可使用systemd把该命令运行为service.这个gohttpproxy不对外部ip服务,仅对linux vps里面的程序提供服务。
 这个gohttpproxy可用作各种tunnel的后端程序。

项目地址:https://github.com/netroby/gohttpproxy
-------------

类似程序:https://github.com/google/martian

No comments:

Post a Comment