3

我目前正在 Heroku 的 Cedar 堆栈上运行 Octopress(基于 Jekyll)站点——代码位于此处:https ://github.com/elithrar/octopress

我想Cache-Control根据文件类型有选择地应用标题:

  • .html文件的值为public, max-age=3600
  • .css|.js|.png|.ico(等)获取值public, max-age=604800- 或者,我想将此规则应用于/stylesheets', '/javascripts', '/imgs'目录提供的任何内容。

已经使用了这两个set :static_cache_control , [:public, :max_age => 3600]并且只是没有运气的香草cache_control :public, :max_age => 3600语句。

我已经设法自己设置public, max-age=3600文章(例如/2012/lazy-sundays/),但无法让标题应用于 CSS/JS(例如/stylesheets/screen.css

config.ru目前看起来像这样(更新):

require 'bundler/setup'
require 'sinatra/base'

# The project root directory
$root = ::File.dirname(__FILE__)

class SinatraStaticServer < Sinatra::Base

  get(/.+/) do
    cache_control :public, :max_age => 7200
    send_sinatra_file(request.path) {404}
  end

  not_found do
    send_sinatra_file('404.html') {"Sorry, I cannot find #{request.path}"}
    cache_control :no_cache, :max_age => 0
  end

  def send_sinatra_file(path, &missing_file_block)
    file_path = File.join(File.dirname(__FILE__), 'public',  path)
    file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i  
    File.exist?(file_path) ? send_file(file_path) : missing_file_block.call
  end

end

use Rack::Deflater

run SinatraStaticServer
4

2 回答 2

6

以下是如何为静态资产设置长到期标头,并为您在 Heroku 上的主要内容设置任意到期标头:

宝石文件:

gem 'rack-contrib'

配置.ru:

require 'rack/contrib'

get '*.html' do |page|
  # whatever code you need to serve up your main pages
  # goes here... use Rack::File I guess.
  page
end


# Set content headers for that content...
before do
  expires 5001, :public, :must_revalidate
end


# Assets in /static/stylesheets (domain.com/stylesheets) 
# are served by Rack StaticCache, with a default 2 year expiry.

use Rack::StaticCache, :urls => ["/stylesheets"], :root => Dir.pwd + '/static'

run Sinatra::Application

默认情况下,URL 数组(静态/样式表、静态/图像等)中列出的内容的有效期为 2 年。

你必须从 /public 移动到 /static ,否则你会不必要地使用 Heroku 的 nginx 配置(应用这些设置的正确位置真的......)。

我知道你说过你试图不使用 Rack Contrib,但这没有任何意义。使用 90 行的小型库来执行此操作没有任何害处https://github.com/rack/rack-contrib/blob/master/lib/rack/contrib/static_cache.rb

“正确”的方法是在可以配置 nginx 的环境中托管静态内容,第二个最佳方法是重命名静态文件路径,以便 heroku 忽略它,并使用 rack static 提供带有所需标题的静态文件。

--

另外要明确的是,只需将您的公用文件夹重命名为其他名称,您就可以通过路由执行此操作,并且正常的 Sinatra 过期功能。但我会使用 StaticCache,因为它不那么冗长。(我相信,真正的问题是 Heroku 不会让 nginx 与您的应用程序对话以请求 public/。)

于 2012-07-19T08:49:13.827 回答
1

我对 Sinatra 知之甚少,但我认为这样的事情可以解决问题:

class SinatraStaticServer < Sinatra::Base
  before '*.html' do
    response.headers['Cache-Control'] = 'public, max-age=3600'
  end

  before %r{\.(css)|(js)|(png)|(ico)} do
    response.headers['Cache-Control'] = 'public, max-age=604800'
  end

  # ...
end

更新:当你说上面没有成功添加标题时,我进一步调查了它。我确定问题在于 Sinatra 自动提供文件public/而不是通过应用程序,因此没有添加标题。我的解决方案是将静态文件从public/to移动public/public/并相应调整send_sinatra_file

class SinatraStaticServer < Sinatra::Base
  # ...

  def send_sinatra_file(path, &missing_file_block)
    file_path = File.join(File.dirname(__FILE__), 'public/public',  path)
    file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i
    File.exist?(file_path) ? send_file(file_path) : missing_file_block.call
  end

  # ...
end

我确认这适用于我的机器。请注意,我response.headers['Cache-Control']在答案的第一部分中使用了该方法,而不是set :static_cache_control您尝试过的方法,但我认为它只能在一个configure do块中运行一次。

另请注意,在当前设置下,与上述匹配的 404nonexistant.png将提供 404 状态,但 Cache-Control 标头仍然存在。我可以看到几种解决方法,但我认为你会这样做,所以我只是指出它并认为你会随心所欲地处理它。

于 2012-07-16T23:12:36.423 回答