用shadowsocks科学上网有一阵了,感觉速度很快。这两天在家里用intellij安插件发现很慢,想着能否搭一个本地的http代理中转,将请求发到shadowsocks上,一搜果然有现成的方案,也很简单,这里记录下。

安装Polipo

1
brew install polipo

配置polipo到shadowsocks端口

1
2
service polipo stop
polipo socksParentProxy=localhost:1080

使用

1
2
3
4
5
6
7
8
9
各种app里配置http_proxy=localhost:8123
http_proxy=http://localhost:8123 brew update
http_proxy=http://localhost:8123 curl www.google.com
http_proxy=http://localhost:8123 wget www.google.com
git config --global http.proxy 127.0.0.1:8123

Comments