美文网首页
Mac 环境将 Socks 代理转 Http 代理

Mac 环境将 Socks 代理转 Http 代理

作者: RusionWayne | 来源:发表于2018-11-30 18:38 被阅读22次

    安装 polipo

    sudo port install polipo

    快速使用

    $ polipo socksParentProxy=localhost:1080

    配置文件方式启用

    # vi ~/.poliporc
    
    socksParentProxy = “127.0.0.1:1080″
    socksProxyType = socks5
    proxyAddress = "::0"        # both IPv4 and IPv6
    # or IPv4 only
    # proxyAddress = "0.0.0.0"
    proxyPort = 8123
    

    运行

    $ polipo -c ~/.poliporc

    测试

    $ curl --proxy http://127.0.0.1:8123 https://www.google.com

    配置开机自启动

    参考链接:mac环境下开机自启动Shell脚本

    参考链接

    相关文章

      网友评论

          本文标题:Mac 环境将 Socks 代理转 Http 代理

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