0

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上找到的

干杯

4

1 回答 1

5

X-Sendfile 不适用于 Heroku。Heroku Google 组的此线程中提供了更多详细信息:什么是 rails3_disable_x_sendfile?

于 2011-03-22T05:46:28.903 回答