码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7 搭建 TinyProxy 代理

时间:2019-01-10 21:44:18      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:max   squid   优秀   pidfile   头部   访问   centos 7   serve   install   

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 代理

标签:max   squid   优秀   pidfile   头部   访问   centos 7   serve   install   

原文地址:https://www.cnblogs.com/crazytata/p/10252350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!