使用shadowsocks 实现http和https 代理解决 各种sdk更新墙

maven和atom更新都是https同理被墙的不要不要的。。。。

网上找了好多代理,都不支持https,今天shadowsocks客户端的qt5版有https,真是6666666666666

maven设置代理

在用户主目录下.m2目录下,找到settings.xml,并使用文本编辑器编辑。

<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>127.0.0.1</host>
<port>1080</port>
<nonProxyHosts>
www.oracle.com|localhost|127.0.0.1
</nonProxyHosts>
</proxy>
<proxy>
<active>true</active>
<protocol>https</protocol>
<host>127.0.0.1</host>
<port>1080</port>
<nonProxyHosts>
www.oracle.com|localhost|127.0.0.1
</nonProxyHosts>
</proxy>
</proxies>

java程序设置代理 比如 spring boot ci

set JAVA_OPTS=-Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=1080 -Dhttps.proxyhost=127.0.0.1 -Dhttps.proxyport=1080 -Dserver.port=8085

atom的APM

apm config set proxy http://127.0.0.1:1080
apm config set https-proxy http://127.0.0.1:1080

Git

git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
git config --global http.sslverify false

参考文档

http://www.snowdream.tech/2016/03/31/proxy-settings-with-shadowsocks/

© 2017, 新之助meow. 原创文章转载请注明: 转载自http://www.xinmeow.com

0.00 avg. rating (0% score) - 0 votes
点赞