Apm: Add SOCKS proxy support

Created on 16 Aug 2014  路  11Comments  路  Source: atom/apm

Although this check-in add support for HTTP proxy and HTTPS proxy. It does not support SOCKS proxy. According to this post, that is not too much work. How do you think about this?

Most helpful comment

my solution for atom socks proxy as below

rickie-pc $ cat ~/.atom/.apmrc
strict-ssl = false
http_proxy = socks5://127.0.0.1:1997
https_proxy = socks5://127.0.0.1:1997

works for me.

All 11 comments

I use Privoxy to meet my requirement.

my solution for atom socks proxy as below

rickie-pc $ cat ~/.atom/.apmrc
strict-ssl = false
http_proxy = socks5://127.0.0.1:1997
https_proxy = socks5://127.0.0.1:1997

works for me.

~/.atom/.apmrc

strict-ssl=false
http-proxy="http://localhost:8123"
https-proxy="http://localhost:8123"
$ cat ~/.atom/.apmrc
strict-ssl = false
http_proxy = socks5://127.0.0.1:1080
https_proxy = socks5://127.0.0.1:1080

Not work for me.
Unable to download https://www.atom.io/api/packages/vim-mode-plus/versions/0.93.0/tarball: connect ETIMEDOUT 50.17.240.35:443

@ahui132 You can try this,
strict-ssl=false
http-proxy=socks5://127.0.0.1:9999
https-proxy=null

$ cat ~/.atom/.apmrc
strict-ssl=false
http_proxy=socks5:127.0.0.1:1080
https_proxy=socks5:127.0.0.1:1080

$vim ~/.atom/.apmrc
strict-ssl=false
http_proxy=socks5:127.0.0.1:1080
https_proxy=socks5:127.0.0.1:1080

remove all other contents

On Mac you can use polipo to convert a socks5 proxy to http proxy, and then use the http proxy in ~/.atom/.apmrc. This solution works for me.

On windows process is difficult just simply convert socks proxy to HTTP proxy or use proxifier for windows

On windows process is difficult just simply convert socks proxy to HTTP proxy or use proxifier for windows

agree with you !!!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Jamesits picture Jamesits  路  6Comments

lexicalunit picture lexicalunit  路  9Comments

izuzak picture izuzak  路  5Comments

michaelsanford picture michaelsanford  路  4Comments

calebmeyer picture calebmeyer  路  5Comments