在heroku上的Rails 3 x_sendfile

时间:2010-03-06 11:56:08

标签: ruby-on-rails nginx heroku ruby-on-rails-3

Rails 3允许直接以更高效的方式向HTTP客户端发送静态文件并绕过您的应用服务器进程(如http://john.guen.in...所述)

send_file '/path/to.png', :x_sendfile => true, :type => 'image/png'

我想在heroku上部署我的应用。

heroku使用Nginx 0.6.32(见http://docs.heroku.com/aspen)。

x_sendfile是否适用于heroku?

以下是我在Nginx上发现的http://wiki.nginx.org/NginxXSendfile

干杯

1 个答案:

答案 0 :(得分:5)

X-Sendfile在Heroku上不起作用。 Heroku Google小组在此主题中提供了更多详细信息:What is rails3_disable_x_sendfile?