尝试在reverse_proxy上更改缓存标头

时间:2013-05-01 20:13:34

标签: apache2 reverse-proxy image-caching

我正在尝试更改缓存控制&通过apache reverse_proxy过期标头。我无法更改原始服务器配置或代码ATM。

 ExpiresActive On
  Header unset Etag
  Header unset Cache-Control
  Header unset Expires
  <LocationMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
    Header set Cache-Control "max-age=290304000, public"
  </LocationMatch>

..和

<LocationMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
ExpiresActive On
Header unset Etag
Header unset Cache-Control
Header unset Expires
Header set Cache-Control "public"
  Header set Cache-Control "max-age=290304000, public"
</LocationMatch>

没有这样做&amp;重新启动apache2时,没有关于配置的抱怨。

使用“curl -I ... image.jpg”进行测试

1 个答案:

答案 0 :(得分:0)

可以通过设置多个位置分别具有不同标题的位置来解决问题。

离。

<Location /resources/>
  Header unset Etag
  Header set Cache-Control "max-age=290304000, public"
  Header unset Expires
  ProxyPass {ajp|http}://host:port/resources/
  ProxyPassReverse {ajp|http}://host:port/resources/
</Location>
<Location //>
  Header add "Instance_1"
  ProxyPass {ajp|http}://host:port/
  ProxyPassReverse {ajp|http}://host:port/
</Location>