http 代理服务器 tinyproxy 搭建手册
Posted 一灰灰blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http 代理服务器 tinyproxy 搭建手册相关的知识,希望对你有一定的参考价值。
http 代理服务器 tinyproxy 搭建手册
简单记录一下 http 代理服务器 tinyproxy 的搭建与简单配置过程
# 安装
sudo yum install tinyproxy -y
安装完毕之后,做一些基本的配置,比如端口,允许的 ip 等
vim /etc/tinyproxy/tinyproxy.conf
# 端口
Port 18888
# 允许的ip,如果不配置allow,那么默认所有的ip都可以进来
Allow 127.0.0.1
服务启动关闭等命令
# 启动
systemctl start tinyproxy.service
# 重启
systemctl restart tinyproxy.service
# 关闭
systemctl stop tinyproxy.service
查看代理日志
tail -f /var/log/tinyproxy/tinyproxy.log
测试:
# 请注意,
curl -x "127.0.0.1:18888" -v 'http://www.baidu.com'
参考文档: linux 搭建 http 代理服务器
II. 其他
1. 一灰灰 Blog:https://liuyueyi.github.io/hexblog
一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛
2. 声明
尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现 bug 或者有更好的建议,欢迎批评指正,不吝感激
-
微博地址: 小灰灰 Blog -
QQ:一灰灰/3302797840
3. 扫描关注
一灰灰 blog
以上是关于http 代理服务器 tinyproxy 搭建手册的主要内容,如果未能解决你的问题,请参考以下文章