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 !!!
Most helpful comment
my solution for atom socks proxy as below
works for me.