3

我使用 Linode 作为我的托管解决方案。我有一个 rails 3 应用程序,它可以动态获取 mp3(和其他媒体)并创建一个 .zip 文件以供下载。它在开发中运行良好,但是一旦我把它放在我的产品服务器上,zip 文件仍然会下载,但是当我解压缩它时,它会创建一个名为 foo-bar.zip.cpgz 的文件

这是我的控制器的代码片段 -

   def get_zip
    t = Tempfile.new("#{@foobar.slug}-#{request.remote_ip}.zip")
    Zip::ZipOutputStream.open(t.path) do |zos|
      @foobardownloads.each do |foobardownload|
        extension = File.extname(foobardownload.foobardownload_file_name).gsub(/^\.+/, '')
        zos.put_next_entry("#{foobardownload.title}.#{extension}")
        zos.print open(foobardownload.foobardownload.url).read
      end
    end
    send_file t.path, :x_sendfile => true, :type => 'application/zip', :filename => "#{@foobar.slug}.zip"
    t.close  
  end
4

1 回答 1

6

好的 - 进行了一些挖掘 - 这实际上是带有 rails 3、nginx 和 send_file 的问题。解决方案在这里:

http://www.novafist.com/2010/09/send_file-sends-0-bytes-to-client-in-rails/

“快速而肮脏”的技巧是打开您的 production.rb 文件并取消注释此行

config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'

确保

#config.action_dispatch.x_sendfile_header = "X-Sendfile"

仍然被注释掉。

于 2011-01-21T15:49:44.450 回答