Nginx支持的Rails应用程序中缺少Content-Length Header

时间:2014-03-29 02:42:07

标签: ruby-on-rails nginx http-headers

我是一个为注册用户提供大型静态文件的rails应用程序。我可以按照这里的优秀指南来实现它:Protected downloads with nginx, Rails 3.0, and #send_file。下载和其他所有内容都运行良好,但只有这个问题 - Content-Length标题没有被发送。

No Content Length Header

对于小文件来说没问题,但是下载大文件时会非常令人沮丧,因为下载管理器和浏览器都没有显示任何进展。我怎样才能解决这个问题?我是否必须在nginx配置中添加内容,或者是否必须将其他选项传递给rails控制器中的send_file方法?我一直在网上搜索已经有一段时间了,但都没有成功。请帮忙!谢谢!

这是我的nginx.conf

upstream unicorn {
  server unix:/tmp/unicorn.awesomeapp.sock fail_timeout=0;
}

server {
  listen 80 default_server deferred;
  # server_name example.com;
  root /home/deploy/apps/awesomeapp/current/public;

  location ~ /downloads/(.*) {
    internal;
    alias /home/deploy/uploads/$1;
  }

  location ^~ /assets/ {
    gzip_static on;
    expires max;
    add_header Cache-Control public;
  }

  try_files $uri/index.html $uri @unicorn;
  location @unicorn {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;

    proxy_set_header X-Sendfile-Type X-Accel-Redirect;
    proxy_set_header X-Accel-Mapping /downloads/=/home/deploy/uploads/;

    proxy_pass http://unicorn;
  }

  error_page 500 502 503 504 /500.html;
  client_max_body_size 20M;
  keepalive_timeout 10;
}

1 个答案:

答案 0 :(得分:14)

好的,这里有一些东西。我不知道它是否正确,但我能够通过手动从我的Rails Content-Length发送Controller标题来解决问题。这就是我正在做的事情:

def download
    @file = Attachment.find(params[:id])

    response.headers['Content-Length'] = @file.size.to_s
    send_file(@file.path, x_sendfile: true)
end

nginx应该能够自动设置标头。必须有一些我不知道的东西;但直到我找到一个“正确的”#39;解决方案,我想这将是必须的。

P.S:Header需要是一个字符串才能与某些Web服务器一起正常工作,因此.to_s