Rails 3资产管道+ Apache + Phusion Passenger

时间:2011-11-08 16:18:37

标签: ruby-on-rails ruby-on-rails-3 apache asset-pipeline passenger

我正在使用Rails 3.1 w / asset pipeline,phusion 3.0.x和apache 2.2.17。

http://guides.rubyonrails.org/asset_pipeline.html的配置文档中,在4.1.1节中,它指出我需要在我的apache配置中添加一个部分:

<LocationMatch "^/assets/.*$">
  # Some browsers still send conditional-GET requests if there's a
  # Last-Modified header or an ETag header even if they haven't 
  # reached the expiry date sent in the Expires header.
  Header unset Last-Modified
  Header unset ETag
  FileETag None
  # RFC says only cache for 1 year
  ExpiresActive On
  ExpiresDefault "access plus 1 year"
</LocationMatch>

我一直认为Phusion Passenger刚刚“处理”了这个......或者我是不是在忽视RTFM?如果我想利用指纹识别,我是否需要将其添加到apache配置?

1 个答案:

答案 0 :(得分:9)

如果您希望获得资产管道的全部好处,确实需要将其添加到Apache配置中。如果没有该部分,您的Apache配置可能会特别告诉浏览器而不是缓存资产 - 导致浏览器和服务器之间不必要的往返次数。

为了使其工作,您可能需要启用更多Apache模块。要做到这一点:

sudo a2enmod
# Choose headers
sudo a2enmod
# Choose expires
sudo service apache2 restart

要调试您的设置,我建议使用Live Headers Firefox插件。使用它,特别请求资产URL(例如http://mysite.com/assets/application-8a0ae0b2d708f797674b7123c37501ba.css)and查看更改之前和之后的缓存标头。通过在任何页面上执行查看源来查找示例资产URL。

更改后,您应该会看到缓存过期时间设置为一年。