首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏全栈程序员必看

    TinyProxy电信

    listen_port=65080; daemon=on; worker_proc=0; uid=3004;

    5K10编辑于 2022-09-18
  • 来自专栏开源部署

    利用 Tinyproxy 搭建 HTTP(S) 代理

    目前市面上有许多 HTTP(S) 代理软件可以选择,我们将使用 Tinyproxy。我们选择 Tinyproxy,是因为它足够简单、小巧,且无需过多的配置。 安装 Tinyproxy 在 Debian 中,通过执行以下指令可以安装 Tinyproxy: apt-get install tinyproxy 配置 Tinyproxy Tinyproxy 的配置文件默认位于 /etc/tinyproxy.conf。 基于TinyProxy搭建HTTP代理服务器 http://www.linuxidc.com/Linux/2013-05/83999.htm

    2.4K21编辑于 2022-06-28
  • 来自专栏HHTjim'S 部落格

    centos 使用tinyproxy搭建 http代理服务

    http代理服务 环境: centos install $ yum -y install tinyproxy config /etc/tinyproxy/tinyproxy.conf 为配置文件 # 设置代理端口 tinyproxy restart sudo service tinyproxy stop error 如果出现启动失败: [root@VM-0-3-centos tinyproxy]# systemctl status tinyproxy.service ● tinyproxy.service - Startup script for the tinyproxy server Loaded: loaded #ExecStart=/usr/sbin/tinyproxy -c /etc/tinyproxy/tinyproxy.conf ExecStart=/usr/sbin/tinyproxy -c /etc $(pwd)/tinyproxy.conf:/etc/tinyproxy/tinyproxy.conf docker.io/kalaksi/tinyproxy https://github.com/kalaksi

    61400编辑于 2025-02-26
  • 来自专栏米扑专栏

    CentOS 7 安装 TinyProxy 代理服务器

    安装 TinyProxy yum -y install tinyproxy 2. 配置 TinyProxy vim /etc/tinyproxy/tinyproxy.conf 修改 Port 端口,默认为 8888 Port 8888 注释掉 Allow,表示允许所有人访问代理 #Allow /tinyproxy.pid" LogFile "/var/log/tinyproxy/tinyproxy.log" LogLevel Info MaxClients 100 MinSpareServers 启动 TinyProxy systemctl start tinyproxy.service  更多命令如下: systemctl restart tinyproxy.service  systemctl stop tinyproxy.service  systemctl status tinyproxy.service  systemctl enable tinyproxy.service  4.

    6.3K30发布于 2019-02-18
  • 来自专栏运维之美

    推荐一款轻量级 HTTPHTTPS 代理 TinyProxy

    $ git clone https://github.com/tinyproxy/tinyproxy.git $ cd tinyproxy $ ./autogen.sh $ . /configure $ make $ make install 配置 TinyProxy TinyProxy 默认配置文件路径为 /etc/tinyproxy/tinyproxy.conf。 $ cat /etc/tinyproxy/tinyproxy.conf ## ## tinyproxy.conf -- tinyproxy daemon configuration file ## # # 启动 TinyProxy $ service tinyproxy start # 停止 TinyProxy $ service tinyproxy stop # 重启 TinyProxy $ service • 查看 TinyProxy 请求日志 $ tail -f /var/log/tinyproxy/tinyproxy.log

    59.1K58发布于 2019-07-30
  • 来自专栏FreeBuf

    Tinyproxy曝出严重漏洞,影响全球52000台主机

    Tinyproxy 是一个轻量级的开源 HTTP 代理守护程序,专注于简单性和效率。根据 HTTP 规范,客户端提供的标头表示代理在最终 HTTP 请求中必须删除的 HTTP 标头列表。 Tinyproxy 在函数中正是这样做的: 首先,我们应该注意到客户端发送的 HTTP 标头驻留在键值存储中。 Tinyproxy 的维护者在上周末提交的一组文件中,指责 Talos 将报告发送到了一个已经不再使用的电子邮件地址,并补充说他们是在 2024 年 5 月 5 日被 Debian Tinyproxy https://thehackernews.com/2024/05/critical-tinyproxy-flaw-opens-over.html https://thehackernews.com/2024 /05/critical-tinyproxy-flaw-opens-over.html

    1.1K10编辑于 2024-05-17
  • 来自专栏进击的Coder

    腾讯云Ubuntu搭建TinyProxy代理服务器

    本节为大家讲解腾讯云主机搭建TinyProxy代理服务器的过程。 那就是TinyProxy。 Pidfile (必须)pid 文件, 默认 / usr/var/run/tinyproxy/tinyproxy.pid,在 PidFile 文件不存在时会运行失败。 默认是 127.0.0.1,如果想要公开 tinyproxy 代理服务器,则把 Allow 一行注释掉 运行 直接启动 TinyProxy 的 service 即可。 service tinyproxy start 默认启动 sudo service tinyproxy start 重启 sudo service tinyproxy restart 停止

    25.7K30发布于 2017-03-16
  • 来自专栏AI科技时讯

    解锁服务器外联:TinyProxy一键搭建指南

    本文介绍如何通过在一台能够访问外网的服务器上部署TinyProxy来实现代理,使得其他服务器可以通过该代理访问外网。 安装 TinyProxy是一个轻量级的代理服务器,用于实现http或https代理。 安装过程非常简单,只需执行以下命令即可: sudo apt-get update sudo apt-get install tinyproxy 配置文件 在安装完成后,需要配置TinyProxy以满足特定需求 首先,编辑配置文件/etc/tinyproxy.conf: Port 8888 # 代理port,默认是8888, 可以改成任何自己想要的 Allow 127.0.0.1 # 允许能通过该代理的服务器 使用以下命令重启systemd-resolved服务以应用更改: sudo systemctl restart systemd-resolved 启动 运行以下命令完成启动,重启,停止 service tinyproxy

    5.7K11编辑于 2024-02-26
  • 有哪些搭建代理服务器的好方法?--代理IP小课堂

    二、使用Tinyproxy搭建轻量级代理Tinyproxy它占用资源少,易于配置,也非常适合个人使用或小型企业。 1.安装Tinyproxy在基于Debian的系统中,可以通过以下命令安装Tinyproxy:sudo apt-get updatesudo apt-get install tinyproxy2.配置TinyproxyTinyproxy 的配置文件位于/etc/tinyproxy/tinyproxy.conf。 Port 8888Allow 127.0.0.13.重启Tinyproxy配置完成后,重启Tinyproxy服务:sudo systemctl restart tinyproxy测试代理功能:同样使用curl 当然,无论是我们使用的是选择成熟的Squid,还是轻量级的Tinyproxy,或是其他代理软件,关键在于根据实际需求进行合理配置和管理。

    3.2K10编辑于 2024-03-07
  • 来自专栏老高的技术博客

    玩转VPS之快速搭建HTTP代理

    于是谷歌随便翻一下,抓到一个tinyproxy镜像dannydirect/tinyproxy,使用方法简单到可怕!不过镜像有一点点问题,老高修复了一版! endoffight/tinyproxy,欢迎围观。 保险的运行方式是先找到自己的IP地址,使用http://www.ip138.com/ # 然后把ANY改为自己的IP # 比如老高的家里的地址为8.8.8.8 docker run -d --name='tinyproxy ' -p 7777:8888 endoffight/tinyproxy ANY # 或 docker run -d --name='tinyproxy' -p 7777:8888 endoffight/ tinyproxy 8.8.8.8 搭建玩代理,本地如何使用呢?

    5.7K30编辑于 2022-12-28
  • 来自专栏小徐学爬虫

    手把手教你:用拨号虚拟机搭建动态IP代理池

    2、代理中间件(Proxy Middleware):部署在每个节点上的小型代理服务(如Squid, TinyProxy),允许你的爬虫通过它来发送请求。 推荐选择:TinyProxy。它非常轻量,配置简单,非常适合这个场景。 epel-release sudo yum install tinyproxy修改配置:sudo vim /etc/tinyproxy/tinyproxy.conf找到 Port 行,设置一个端口,例如 启动服务:sudo systemctl restart tinyproxy sudo systemctl enable tinyproxy # 设置开机自启测试代理:在你的本地机器上,配置浏览器或curl 3、认证与安全:为TinyProxy和中央API添加简单的认证,防止他人盗用你的代理资源。4、频率控制:合理设置拨号频率,过于频繁可能导致VPS供应商封禁。根据你的业务需求找到平衡点。

    1.1K10编辑于 2025-09-11
  • 来自专栏全栈程序员必看

    Ubuntu设置代理服务器

    经过查资料,最终决定使用TinyProxy。 首先在代理服务器上安装TinyProxy,安装步骤如下: 1.执行以下命令,安装TinyProxy apt-get install tinyproxy 2.安装成功后,修改配置文件 vim /etc /tinyproxy.conf 修改以下两项: Port 8888 #代理服务器默认使用8888端口,也可以修改为其它端口 Allow 127.0.0.1 #将127.0.0.1改成自己的外网IP ,只有该IP才能连接,注意至少设置一个允许的IP 3.启动TinyProxy 启动 sudo service tinyproxy start 重启 sudo service tinyproxy restart 停止 sudo service tinyproxy stop 到此,代理服务器就搭建好了。

    4K30编辑于 2022-09-07
  • 来自专栏写字母的代码哥

    精讲RestTemplate第10篇-使用代理作为跳板发送请求

    代理服务器还是由我自己来搭建用来测试,在我的一个CentOS服务器上安装tinyproxytinyproxy可以提供代理服务。 # 安装tinyproxy 命令 sudo yum install tinyproxy -y 编辑tinyproxy的配置文件vim /etc/tinyproxy/tinyproxy.conf。 Allow xxx.xxx.xxx.xxx 启动tinyproxy提供代理服务,最好检查一下防火墙是否开放了1080端口。 systemctl start tinyproxy.service 二、用于测试的服务端 我们这次要访问的服务端是:http://www.httpbin.org, 这个网站是提供在线的HTTP访问服务的网站 三、代理使用者RestTemplate 我的第一小节中的代理服务器的ip是88.99.10.251,tinyproxy代理服务端口1080。

    2.8K21发布于 2020-09-23
  • 来自专栏小灰灰

    【SpringBoot WEB 系列】RestTemplate 之代理访问

    代理服务器搭建 我们这里借助 tinyproxy 来搭建代理服务器,详细步骤可以参考博文: http 代理服务器 tinyproxy 搭建手册 本文的演示中,是在192.168.0.241状态 centos 机器上安装的,步骤如下 1. sudo yum install tinyproxy -y # 设置配置 2. vim /etc/tinyproxy/tinyproxy.conf # 下面这个ip 启动服务 systemctl start tinyproxy.service II. (tinyproxy/1.8.3)","accept":"text/plain, application/json, application/*+json, */*","user-agent":"Java /1.8.0_171"} cookies: >>>remote ipInfo: 192.168.0.241:56122,[Via:"1.1 tinyproxy (tinyproxy/1.8.3)", Content-Type

    3.9K20发布于 2020-07-07
  • 来自专栏进击的Coder

    腾讯云+ADSL拨号主机上使用Tornado+Redis维护代理池

    在Linux下搭建HTTP代理服务器,推荐TinyProxy和Squid,配置都非常简单,在这里我们以TinyProxy为例来讲解一下怎样搭建代理服务器。 安装TinyProxy 当然第一步就是安装TinyProxy这个软件了,在这里我使用的系统是CentOS,所以使用yum来安装,如果是其他系统如Ubuntu可以选择apt-get等命令安装,都是类似的 命令行执行yum安装指令: yum install -y epel-release yum update -y yum install -y tinyproxy 运行完成之后就可以完成tinyproxy 配置TinyProxy 安装完成之后还需要配置一下TinyProxy才可以用作代理服务器,需要编辑配置文件,它一般的路径是/etc/tinyproxy/tinyproxy.conf。 service tinyproxy start 验证TinyProxy 好了,这样我们就成功搭建好代理服务器了,首先ifconfig查看下当前主机的IP,比如当前我的主机拨号IP为112.84.118.216

    12.5K32发布于 2017-05-23
  • 来自专栏进击的Coder

    轻松获得海量稳定代理!ADSL拨号代理的搭建

    四、设置代理服务器 在Linux下搭建HTTP代理服务器,推荐TinyProxy和Squid,配置都非常简单。在这里我们以TinyProxy为例来讲解一下怎样搭建代理服务器。 1. 安装 TinyProxy 第一步就是安装TinyProxy软件。在这里我使用的系统是CentOS,所以使用yum来安装。如果是其他系统如Ubuntu,可以选择apt-get等命令安装。 配置 TinyProxy TinyProxy安装完成之后还要配置一下才可以用作代理服务器。我们需要编辑配置文件,此文件一般的路径是/etc/tinyproxy/tinyproxy.conf。 修改为如下代码: # Allow 127.0.0.1 设置完成之后重启TinyProxy即可: systemctl enable tinyproxy.service systemctl restart stop firewalld.service 这样我们就完成了TinyProxy的配置。

    10.8K65发布于 2018-06-25
  • 来自专栏入门小站

    如何使用netstat,lsof和nmap检查Linux中的开放端口

    LISTEN 967/master tcp 0 0 0:8080 0:* LISTEN 800/tinyproxy 0t0 TCP *:80 (LISTEN) httpd 781 root 6u IPv6 16336 0t0 TCP *:443 (LISTEN) tinyproxy 800 tinyproxy 0u IPv4 16750 0t0 TCP *:8080 (LISTEN) tinyproxy 805 tinyproxy 0u

    3.2K10编辑于 2022-06-02
  • 来自专栏云爬虫技术研究笔记

    Docker竟然还能这么玩?商业级4G代理搭建实战!

    启动代理服务器 那么在测试拨号后确实可以通过 4G 网卡上网了之后,我们就可以把代理服务器启动了,这里我使用的是 TinyProxy。 先 apt install tinyproxy 一波,然后 vim /etc/tinyproxy/tinyproxy.conf 修改一下配置。 改完之后保存一波,然后就可以直接执行 tinyproxy 启动了…吗? 等等,还有一个操作要做! 那么现在,你可以执行 tinyproxy 启动代理服务器了。

    2.2K10发布于 2019-11-05
  • 来自专栏进击的Coder

    爬虫代理大厂都封得差不多了,了解下商业级 4G 代理搭建方法吧!

    启动代理服务器 那么在测试拨号后确实可以通过 4G 网卡上网了之后,我们就可以把代理服务器启动了,这里我使用的是 TinyProxy。 先 apt install tinyproxy 一波,然后 vim /etc/tinyproxy/tinyproxy.conf 修改一下配置。 改完之后保存一波,然后就可以直接执行 tinyproxy 启动了…吗? 等等,还有一个操作要做! 那么现在,你可以执行 tinyproxy 启动代理服务器了。

    3.9K31发布于 2019-09-19
  • 来自专栏Haytham的原创技术文章

    SSH Tunnel (端口转发) -- 把个人PC变成“幕后boss”

    [63646257-3441b080-c742-11e9-92bd-aa4970d689b2.jpeg] 我们唯一需要做的就是让个人电脑发起的所有请求都经过具有固定ip的云服务器来完成,推荐工具比如“TinyProxy 当端口映射和TinyProxy均搭建起来后,ECS将变成我们PC在Internet的代言人,就是实现了下图所示的效果。自己也就变成“幕后boss”了。

    1.8K00发布于 2019-08-26
领券