我已经在CentOS 7机器上安装了tinyproxy,并在tinyproxy.conf中将端口更改为8080 无论我在哪里点击请求,我都会在tinyproxy.log中收到以下日志:-
CONNECT Mar 15 08:14:42 [22148]: Connect (file descriptor 6): <IP> [<IP>]
NOTICE Mar 15 08:14:42 [22148]: Unauthorized connection from "<IP>" [<IP>].
INFO Mar 15 08:14:42 [22148]: Read request entity of 1200 bytes
我的请求正在到达代理,但代理没有将其转发到目的地。
在 Tinyproxy 配置文件中
(/etc/tinyproxy/tinyproxy.conf)
,您可以使用Allow指令显式指定将连接到代理的主机。您还可以注释掉或删除所有 Allow <host>
行以允许来自所有主机的连接。请参阅配置文件中的以下描述(此处我已注释掉Allow 127.0.0.1
,并且由于没有其他条目,因此将允许所有连接):
# Allow: Customization of authorization controls. If there are any
# access control keywords then the default action is to DENY. Otherwise,
# the default action is ALLOW.
#
# The order of the controls are important. All incoming connections are
# tested against the controls based on order.
#
#Allow 127.0.0.1
另一种解决方案是这样设置(
tinyproxy.conf
):
Allow 0.0.0.0/0