博客
关于我
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/

    你可能感兴趣的文章
    Panalog 日志审计系统 sprog_upstatus.php SQL 注入漏洞复现(XVE-2024-5232)
    查看>>
    Panalog 日志审计系统 前台RCE漏洞复现
    查看>>
    PANDA VALUE_COUNTS包含GROUP BY之前的所有值
    查看>>
    Pandas - 有条件的删除重复项
    查看>>
    pandas -按连续日期时间段分组
    查看>>
    pandas -更改重新采样的时间序列的开始和结束日期
    查看>>
    pandas :to_excel() float_format
    查看>>
    pandas :加入有条件的数据框
    查看>>
    pandas :将多列汇总为一列,没有最后一列
    查看>>
    pandas :将时间戳转换为 datetime.date
    查看>>
    pandas :将行取消堆叠到新列中
    查看>>
    pandas DataFrame 中的自定义浮点格式
    查看>>
    Pandas DataFrame 的 describe()方法详解-ChatGPT4o作答
    查看>>
    Pandas DataFrame中删除列级的方法链接解决方案
    查看>>
    Pandas DataFrame中的列从浮点数输出到货币(负值)
    查看>>
    Pandas DataFrame中的列从浮点数输出到货币(负值)
    查看>>
    Pandas DataFrame多索引透视表-删除空头和轴行
    查看>>
    pandas DataFrame的一些操作
    查看>>
    Pandas Dataframe的日志文件
    查看>>
    Pandas df.iterrows() 并行化
    查看>>