标签 proxy 下的文章

在centos下很容易就可以搭建好一个HTTP代理服务器,搭建一个socks5代理更是简单的不用说

不管是测试用途还是自己使用,Squid都是一个很不错的代理工具!他支持正向代理,反向代理,还有透明代理!老高最近搭建了一个简单的squid的正向代理,随便记记笔记!

如果只是想使用代理而不需要认证功能,tinyproxy也是不错的选择!

阅读剩余部分

一句话代码

pip install --proxy x.x.x.x:8080 requsets
pip install --proxy x.x.x.x:8080 --upgrade pip

帮助文件

pip -h


--proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.

访问谷歌

大家都知道shadowsocks只提供了SOCKS5的代理,而没有提供http代理,而很多软件仅提供了http代理的支持,比如老高需要使用shell命令行扶墙,或者使用git同步android的源代码,再或者更新android SDK,该怎么办呢?

老高在此介绍一个软件Privoxy,它可以作为代理的代理,为我们解决上述问题!

Privoxy is a non-caching web proxy with advanced filtering capabilities for enhancing privacy, modifying web page data and HTTP headers, controlling access, and removing ads and other obnoxious Internet junk. Privoxy has a flexible configuration and can be customized to suit individual needs and tastes. It has application for both stand-alone systems and multi-user networks.

由介绍看来,privoxy的功能可远远不止http代理这么简单!

阅读剩余部分