CentOS 7 搭建 TinyProxy 代理

Posted crazytata

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 搭建 TinyProxy 代理相关的知识,希望对你有一定的参考价值。

CentOS 7 搭建 TinyProxy 代理

TinyProxy 和 Squid 都是比较优秀的代理软件

TinyProxy比较小众,虽然没有Squid的功能丰富,但是小巧简单,也能满足普通用户的需求。

Squid 是一款优秀的代理软件,有很丰富的ACL管理功能,虽然squid很强大,但配置比较繁琐。

 

1. 安装 TinyProxy

yum -y install tinyproxy

 

2. 配置 TinyProxy

vim /etc/tinyproxy/tinyproxy.conf

修改 Port 端口,默认为 8888

Port 8888

注释掉 Allow,表示允许所有人访问代理

#Allow 127.0.0.1

隐藏掉Via请求头部,去掉下面的注释

DisableViaHeader Yes

更多配置项,下面是列举一些配置文件默认的,不需要配置:

PidFile "/var/run/tinyproxy/tinyproxy.pid"
LogFile "/var/log/tinyproxy/tinyproxy.log"
LogLevel Info
MaxClients 100
MinSpareServers 5
MaxSpareServers 20
StartServers 10

 

3. 启动 TinyProxy

systemctl start tinyproxy.service 

更多命令如下:

systemctl restart tinyproxy.service  #重启
systemctl stop tinyproxy.service   #停止
systemctl status tinyproxy.service   #检查
systemctl enable tinyproxy.service   #开机启动

以上是关于CentOS 7 搭建 TinyProxy 代理的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7 安装 TinyProxy 代理服务器

tinyproxy 代理服务器

http 代理服务器 tinyproxy 搭建手册

ubuntu 搭建tinyproxy 代理内网服务器上网

CentOS TinyProxy http(s)上网代理及置代理上网的方法

Ubuntu下使用TinyProxy搭建代理HTTP服务器