将 Shadownsocks 代理转换成 http proxy 类型, 主要就是安装 polipo 工具

brew install polipo

然后就是启动 polipo 程序开机自动启动。

首先要修改自动启动的配置文件 /usr/local/opt/polipo/homebrew.mxcl.polipo.plist,需要给 polipo 命令加上命令行参数 socksParentProxy=localhost:1080


<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

  
    Label
    homebrew.mxcl.polipo
    RunAtLoad
    
    KeepAlive
    
    ProgramArguments
    
      /usr/local/opt/polipo/bin/polipo
      socksParentProxy=localhost:1080
    
  

然后执行以下命令,搞定收工。

ln -sfv /usr/local/opt/polipo/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.polipo.plist

polipo 进程默认监听 8123 端口,在命令行使用 export http_proxy=http://localhost:8123 就可以使用代理了。

export https_proxy=http://localhost:8123
export ftp_proxy=http://localhost:8123