我目前正在 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