主要就是安装 polipo 工具。
brew install polipo
然后就是启动polipo程序开机自动启动。
首先要修改自动启动的配置文件 /usr/local/opt/polipo/homebrew.mxcl.polipo.plist,需要给polipo命令加上命令行参数 socksParentProxy=localhost:1080
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://ift.tt/vvUEPL">
<plist version="1.0">
<dict>
<key>Label</key>
<string>homebrew.mxcl.polipo</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/usr/local/opt/polipo/bin/polipo</string>
<string>socksParentProxy=localhost:1080</string>
</array>
</dict>
</plist>
然后执行以下命令,搞定收工。
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
评论
发表评论