鱿鱼缓存问题

鱿鱼缓存问题

如果我放入我的test_site acl(拒绝访问策略)一个从未有人访问过的站点(即 www.aaabbbccc.com)并执行 a 操作squid -k reconfigure,Squid 就会正确地记录该站点。

然后,我在 test_site acl 中注释掉 www.aaabbbccc.com URL 并squid -k reconfigure再次运行。因此 Squid 允许正确访问该站点,并进行缓存。

但是,问题就在这里。如果我删除 test_site acl 中的注释,再次运行squid -k reconfigure,我仍然可以访问 URL www.aaabbbccc.com (我已经清理了我的机器缓存)。

我的结论是鱿鱼可以拒绝存储在鱿鱼缓存中的站点。但这没有任何意义。我对吗?

这是我的squid.conf

*#####################################################################################
ie_refresh on
#####################################################################################
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports   port    443
acl Safe_ports  port    21
acl Safe_ports  port    443
acl Safe_ports  port    1025-65535

####################################################################################
acl NOCACHE url_regex "/etc/squid/regras/nocachesites"
####################################################################################
acl liberar_mac_x                arp "/etc/squid/regras/liberar_mac_x"
####################################################################################
# Regras de Controle
####################################################################################
acl test_site               url_regex -i "/etc/squid/regras/teste_lucas"
acl redelocal   src     192.168.0.0/255.255.255.0
acl purge method PURGE
acl CONNECT method CONNECT

####################################################################################
no_cache deny NOCACHE

http_access allow liberar_mac_x
http_access deny teste_lucas
http_access allow redelocal

http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all

icp_access allow all
####################################################################################
http_port       3128    transparent
####################################################################################
cache_mem       256     MB
####################################################################################
#cache_dir      ufs     /var/spool/squid 2000 32 512
cache_dir       ufs     /home/squid 5000 32 256
####################################################################################
access_log      /var/log/squid/access.log squid
log_fqdn        on
####################################################################################
acl QUERY urlpath_regex cgi-bin \?
cache deny QUERY
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern .               0       20%     4320
####################################################################################
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache

####################################################################################
cache_effective_user    proxy
cache_effective_group   proxy
visible_hostname        Servidor_de_Proxy
####################################################################################
error_directory /usr/share/squid/errors/Portuguese
####################################################################################
ignore_expect_100 on
####################################################################################
always_direct allow all
####################################################################################
*

相关内容