我使用tinyproxy来反向代理。我有三个子域指向同一台服务器,我们需要它们在内部指向特定的端口。也就是说,来自任何特定子域的端口80,映射到特定端口。请参阅下面的配置示例。
配置如下所示:
Port 80
#Allow 127.0.0.1
#ReverseOnly yes
upstream 127.0.0.1:8115 "website.example.com"
upstream 127.0.0.1:3000 "api.example.com"
upstream 127.0.0.1:9000 "socket.example.com"
当我拉出任何子域名时,我得到的是:
访问被拒绝
此代理的管理员尚未将其配置为服务来自主机的请求
由tinyproxy版本1.8.3生成。
我无法在任何地方找到adequate documentation。我正在考虑联系维护人员。请帮忙。
答案 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
#Allow 192.168.0.0/16
#Allow 172.16.0.0/12
#Allow 10.0.0.0/8
Allow 0.0.0.0/0
在这里的示例中,我允许0.0.0.0/0
,因为我正在配置从Internet到其他VPS的反向代理。
此外,您在上面的配置用于正向代理,而不是反向代理。
要启用反向代理功能,至少需要满足以下条件:
ConnectPort 80
ConnectPort 443
ReversePath "/" "http://<your server IP>:8080/"
ReverseOnly Yes
ReverseMagic Yes