美文网首页
Atom设置proxy方法

Atom设置proxy方法

作者: 金哲虎 | 来源:发表于2017-08-19 11:03 被阅读319次

MacOS下设置Atom Proxy

  1. apm config set strict-ssl false
  2. apm config set http-proxy http://127.0.0.1:9090
  3. apm config set https-proxy http://127.0.0.1:9090
  4. 重启Atom

Windows下设置Atom Proxy

  1. 打开配置文件C:\Users\你的用户名\.atom\.apm\.apmrc写入以下内容
  2. 不作修改,拷贝到C:\Users\你的用户名\.atom\目录下并删除内容)
  3. 文本编辑器打开C:\Users\你的用户名\.atom\apmrc(注意:不是.apm目录下)
  4. 添加如下语句,端口注意修改为自己的代理端口,一般ss代理不需修改。
 http-proxy=http://127.0.0.1:9090
 https-proxy=http://127.0.0.1:9090
 strict-ssl=false

注:127.0.0.1:9090要替换为你的Proxy地址!

相关文章

网友评论

      本文标题:Atom设置proxy方法

      本文链接:https://www.haomeiwen.com/subject/wxhtdxtx.html