use Rack::Static, :urls => ['/stylesheets', '/images'], :root => 'public'
run proc { |env| [200, { 'Content-Type' => 'text/html', 'Cache-Control' => 'public, max-age=86400' }, File.open('public/index.html')] }
ラックアップすると、Rack::File:Class に対して呼び出されるプライベート メソッド「open」を取得します。問題がどこにあるのか本当にわかりません。ランニングラック 1.1. 助けてください...