努力在代理服务器上授予远程HTTP访问权限

时间:2017-01-05 10:53:01

标签: proxy squid

在过去的一天左右,我一直在拼命尝试在虚拟机(由数字海洋托管)上设置鱿鱼。我已经设置了具有Ubuntu操作系统的机器,安装了Squid并修改了配置,因为我正在尝试授权访问我的家用PC(显然它们不在同一个LAN网络上)。我认为这是通过进行下面的编辑来完成的,

acl myips src MYPUBLICIP
acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
http_access allow myips
http_access allow manager localhost
http_access allow manager myips
http_access allow purge localhost
http_access allow purge myips
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow localhost manager
http_access deny manager

从我有限的理解中我已经允许访问顶级IP - 我应该在这里使用我的笔记本电脑IPv4地址(10.213.111.121)吗?

如果有人能和我说话,我会非常感激,因为我真的没有到达任何地方......

谢谢!

0 个答案:

没有答案