Squid 不缓存静态内容

Squid 不缓存静态内容

通过查看Squid3日志,我发现 Squid 没有缓存静态资源,例如:

1379041607.923    611 127.0.0.1 TCP_MISS/304 356 GET http://www.deckle.co.uk/squid-users-guide/css/site.css - DIRECT/95.172.21.186 -

该 css 的请求返回 a TCP_MISS(即使在重新加载后),并且图像、javascript、html 等也会出现同样的情况。事实上,TCP_MISS除了极少数请求外,几乎所有请求都得到了。

如果我们查看 deckle.co.uk 的标头,我们会发现它应该缓存它:

$ http http://www.deckle.co.uk/squid-users-guide/css/site.css 
HTTP/1.1 200 OK
Accept-Ranges: bytes
Cache-Control: max-age=604800
Content-Encoding: gzip
Content-Length: 482
Content-Type: text/css
Date: Fri, 13 Sep 2013 03:07:09 GMT
ETag: "d6007-30e-4d2a2f615c780"
Expires: Fri, 20 Sep 2013 03:07:09 GMT
Last-Modified: Sun, 06 Jan 2013 18:34:22 GMT
Server: Apache/2.2.22 (Ubuntu)
Vary: Accept-Encoding

我的配置文件包含:

acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1    
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 manager localhost
http_access deny manager    
http_access deny !Safe_ports    
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
http_port 3128     
refresh_pattern ^ftp:       1440    20% 10080
refresh_pattern ^gopher:    1440    0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0 0%  0
refresh_pattern .       0   20% 4320
http_access allow localhost
http_access allow all
cache_dir ufs /var/cache/squid3 10000 16 256

我遗漏了什么?为什么我得到了这么多TCP_MISS,而 squid 甚至没有缓存静态资源?

答案1

远程 Web 服务器返回 HTTP 304(未修改)。这意味着浏览器已经有缓存副本,服务器指示浏览器使用该副本,并且没有发送新副本。因此,squid 无需缓存任何内容。

答案2

我在使用 Squid 3.3.8 时也遇到了同样的问题(撰写本文时,Ubuntu 14.10 上的软件包已更新)

挖掘后这里,我发现当存在 Vary Header 时 CSS 和 JS 的缓存处理错误实际上是一个错误,已在后续版本中修复。

从源代码安装 Squid 3.4.10 可以解决此问题。

相关内容