squid purge不了的问题

squid purge不了的问题

刚开始看squid,试着用了下,感觉还不错,今天要手动更新一个页面的时候,出现了问题,不知道是哪的问题,麻烦各位给看看:
/usr/local/sbin/squidclient -m PURGE http://www.bsdlover.cn/index.html
client: ERROR: Cannot connect to localhost:3128: Operation timed out


acl Manager proto cache_object
acl Localhost src 127.0.0.1
acl Purge method PURGE
http_access allow Manager Localhost
http_access allow Localhost Purge
http_access deny Manager
http_access deny Purge

acl Safe_ports port 80
acl Safe_ports port 3128
http_access deny !Safe_ports

我已经给了localhost purge的权限了啊,怎么回事?
确认你的squid监听于localhost的3128
贴的时候没注意,监听的是80
/usr/local/sbin/squidclient -p 80 -m PURGE http://www.bsdlover.cn/index.html
client: ERROR: Cannot connect to localhost:80: Operation timed out
/usr/local/sbin/squidclient -h www.bsdlover.cn -p 80 -m PURGE http://www.bsdlover.cn/index.html
HTTP/1.1 501 Method Not Implemented
Date: Sun, 23 Dec 2007 11:05:35 GMT
Server:
Allow: GET,HEAD,POST,OPTIONS,TRACE
Content-Length: 328
Connection: close
Content-Type: text/html; charset=iso-8859-1
X-Pad: avoid browser bug

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>501 Method Not Implemented</title>
</head><body>
<h1>Method Not Implemented</h1>
<p>PURGE to /index.html not supported.<br />
</p>
<hr>
<address> Server at www.bsdlover.cn Port 80</address>
</body></html>

怎么allow的没有purge?
更奇怪的是,我设置了
refresh_pattern -i \.html$ 10 50% 30 reload-into-ims
这都一天了,那个文件也没更新,怎么搞的?
现在只能是隔一段时间把缓存清了重建,太郁闷了