tinyproxy

Linux 下面的http代理服务器软件。


和squid相比,tinyproxy更小,更好使用。


第一步:下载tinyproxy的源码并编译:tinyproxy-1.8.3.tar.bz2

编译会出现问题,提示没有找到asciidoc,将configure里面的那几行注释掉。

       后面的编译又会报错,但没关系。tinyproxy的可执行文件已经编译好,我们只需要这个。


第二步:tinyproxy的配置文件。tinyproxy.conf。关于该配置文件的详细解释,可以上网搜索 tinyproxy.conf

如下:

# User/Group
User root
Group root


Port 8888


#no upstream ".local.domain"
#no upstream "172.0.0.0/255.0.0.0"
#upstream parent.proxy.com:80


StatHost "tinyproxy.stats"


Allow 127.0.0.1
Allow 172.22.1.1/24


LogFile "/tmp/tinyproxy.log"


PidFile "/tmp/tinyproxy.pid"


MaxClients 100


StartServers 1


# Allowed CONNECT ports. 
# The following two ports are used by SSL.
ConnectPort 443
ConnectPort 563


第三步:开始运行

./tinyproxy -c ./tinyproxy.conf


享受linux代理带来的快感吧!




你可能感兴趣的:(Linux)