博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
部署tinyproxy代理服务
阅读量:6580 次
发布时间:2019-06-24

本文共 1685 字,大约阅读时间需要 5 分钟。

#安装依赖yum install asciidoc#下载wget https://github.com/tinyproxy/tinyproxy/releases/download/1.8.4/tinyproxy-1.8.4.tar.gz -O tinyproxy-1.8.4.tar.gz#解压tar xvfz tinyproxy.1.8.4.tar.gz#编译配置./configure --enable-transparent --prifix=/usr/local/tinyproxy更多的编译选项可以参考源码目录的README文件,部分说明如下:----./configuremakemake install---- in the top level directory to compile and install Tinyproxy. There areadditional command line arguments you can supply to `configure`. Theyinclude:     --enable-debug        If you would like to turn on full                debugging support    --enable-xtinyproxy    Compile in support for the XTinyproxy                header, which is sent to any web                server in your domain.    --enable-filter        Allows Tinyproxy to filter out certain                domains and URLs.    --enable-upstream    Enable support for proxying connections                through another proxy server.    --enable-transparent                Allow Tinyproxy to be used as a                transparent proxy daemon    --enable-static        Compile a static version of Tinyproxy         --with-stathost=HOST    Set the default name of the stats host  Support-------#编译make#安装make install

  修改配置文件一般需要指定用户、用户组、端口、访问IP段,当然这些都有默认值,然后启动程序和测试。

#启动程序:/usr/local/tinyproxy/sbin/tinyproxy -c /usr/local/tinyproxy/etc/tinyproxy.conf#测试代理节点是否生效(假设代理程序安装在10.10.10.10的机器,监听的是8888端口):curl url --proxy 10.10.10.10:8888#如果是https代理加 -k 参数curl url --proxy 10.10.10.10:8888 -k

  关于配置文件的一点补充:

#添加多段IP地址Allow 10.27.80.0/24Allow 11.65.48.0/24Allow 18.90.12.145#添加head信息,https的代理不能添加(一条信息一条记录和ip访问限制设置一样)AddHeader "Referer" "http://www.baidu.com"

 出处: http://www.xiaomastack.com/2016/01/22/tinyproxy/

转载地址:http://xonno.baihongyu.com/

你可能感兴趣的文章
中台之上(五):业务架构和中台的难点,都是需要反复锤炼出标准模型
查看>>
inno setup 打包脚本学习
查看>>
php 并发控制中的独占锁
查看>>
React Native 0.20官方入门教程
查看>>
JSON for Modern C++ 3.6.0 发布
查看>>
我的友情链接
查看>>
监听在微信中打开页面时的自带返回按钮事件
查看>>
第一个php页面
查看>>
世界各国EMC认证大全
查看>>
最优化问题中黄金分割法的代码
查看>>
在JS中使用Ajax
查看>>
Jolt大奖获奖图书
查看>>
android中webview空间通过Img 标签显示sd卡中 的图片
查看>>
ubuntu 16.04 安装PhpMyAdmin
查看>>
安卓开启多个服务
查看>>
设置分录行按钮监听事件
查看>>
C Primer Plus 第5章 运算符、表达式和语句 5.2基本运算符
查看>>
java并发库之Executors常用的创建ExecutorService的几个方法说明
查看>>
23种设计模式(1):单例模式
查看>>
socket 编程入门教程(五)UDP原理:4、“有连接”的UDP
查看>>