博客
关于我
tinyproxy正向代理
阅读量:611 次
发布时间:2019-03-13

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

tinyproxy正向代理配置指南

安装tinyproxy
在Ubuntu系统中,可以使用以下命令安装tinyproxy: `sudo apt-get install tinyproxy`
配置tinyproxy
使用文本编辑器(如`nano`)打开配置文件: `sudo nano /etc/tinyproxy/tinyproxy.conf`

必要设置:

  • 指定监听端口:留用默认端口80,不需要修改。
  • 允许本地访问:注释或删除Allow 127.0.0.1以启用本地访问。
  • 添加常用端口:建议添加ConnectPort 80以支持普通HTTP端口。
  • 配置示例:

    以下是配置文件中的核心设置:

    # 用户和组(建议根据需求设置):  # User your_user  # Group your_group  # �istr信Port设置(默认8888):  # Port 8888  # 绑定单一IP(默认绑定所有IP):  # Listen 192.168.0.1  # 出站规则:  # Bind 192.168.0.1  # 启用BoundSame:  # BindSame yes  # 连接超时设置(默认600秒):  # Timeout 600  # 定义错误页面路径(默认情况下查找路径):  # ErrorFile 404 "/usr/share/tinyproxy/404.html"  # 其他错误类型自行添加。  # 设置默认错误页面:  # DefaultErrorFile "/usr/share/tinyproxy/default.html"  # 定义统计域名:  # StatHost "tinyproxy.stats"  # 指定自定义统计页面:  # StatFile "/usr/share/tinyproxy/stats.html"  # 日志设置(推荐使用syslog):  # Syslog On  # Logfile "/var/log/tinyproxy/tinyproxy.log"  # 日志级别设置(默认为Info):  # LogLevel Info  # 进程文件:  # PidFile "/run/tinyproxy/tinyproxy.pid"  # 添加X-Tinyproxy头:  # XTinyproxy Yes  # 启用上游代理(如需要):  # Upstream firewall:8080 ".example.com"  # 最大客户数量:  # MaxClients 100  # 初次启动服务器数量:  # StartServers 10  # 每个连接的最大数量:  # MaxRequestsPerChild 0  # 定义允许访问的IP段:  # 允许访问本地IP:  # Allow 127.0.0.1  # 允许访问私有网络:  # Allow 192.168.0.0/16  # 允许访问内网:  # Allow 172.16.0.0/12  # 允许访问公司网络:  # Allow 10.0.0.0/8
    刷新系统设置
    重启tinyproxy后,建议执行以下命令以确保网络正常: `sudo netsh winsock reset` `sudo netsh int ip reset`
    文件路径注意事项
    确保Following路径存在: - 404.html:`/usr/share/tinyproxy/404.html` - 400.html:`/usr/share/tinyproxy/400.html` - 503.html:`/usr/share/tinyproxy/503.html` - 403.html:`/usr/share/tinyproxy/403.html` - 408.html:`/usr/share/tinyproxy/408.html` - 默认页面:`/usr/share/tinyproxy/default.html` - 统计页面:`/usr/share/tinyproxy/stats.html`

    其他建议:

    • 如果使用ssl požadided,添加ConnectPort 443以支持HTTPS。
    • 根据实际需求调整MaxSpareServersStartServers
    • 为提高性能,可设置MaxRequestsPerChild 10000

    通过以上步骤,可以轻松配置并使用tinyproxy作为正向代理服务器。

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

    你可能感兴趣的文章
    python | urllib3,一个超强的 Python 库!
    查看>>
    python | webassets,一个超强的 Python 库!
    查看>>
    python | werkzeug,一个不可思议的 Python 库!
    查看>>
    python | xlsxwriter,一个实用的 Python 库!
    查看>>
    python | xlwings,一个非常实用的 Excel 相关的 Python 库!
    查看>>
    python | xmltodict,一个非常厉害的 关于XML数据 Python 库!
    查看>>
    python | xonsh,一个超酷的 Python 库!
    查看>>
    python | yagmail,一个实用的 Python 库!
    查看>>
    python | 一文掌握Python的上下文管理器和with语句
    查看>>
    python | 一文看懂Python闭包机制与变量作用域规则
    查看>>
    python读取含中文的json
    查看>>
    python | 如何用Python锁避免并发错误?
    查看>>
    python | 提升代码迭代速度的Python重载方法
    查看>>
    python | 深入理解Python并发编程中的GIL限制与解决方案
    查看>>
    Python | 爬虫实战——亚马逊搜索页监控(附详细源码)
    查看>>
    python | 高效使用Python工具自动生成模块文档的秘诀
    查看>>
    python 一个list去除另一个list中的值
    查看>>
    python 三大框架的 介绍。
    查看>>
    Python 下载的 11 种姿势,一种比一种高级!
    查看>>
    python读取一个文件夹下所有图片_初学Python-找出文件夹下的所有图片
    查看>>