this message means that Rack::Sendfile disabled X-Accel-Redirect for you, because you have missing configuration for it in nginx.conf...
I'm using Nginx + Passenger 3 + Rails 3.1.
Gathered information from this pages I've figured it out:
http://wiki.nginx.org/X-accel
http://greenlegos.wordpress.com/2011/09/12/sending-files-with-nginx-x-accel-redirect
http://code.google.com/p/substruct/source/browse/trunk/gems/rack-1.1.0/lib/rack/sendfile.rb?r=355
Serving Large Files Through Nginx via Rails 2.3 Using x-sendfile
I have controller which maps /download/1 requests to storage files which have their own directory structure, like this: storage/00/00/1, storage/01/0f/15 etc... so I need to pass this through Rails, but then I need to use send_file method which will use X-Accel-Redirect to send the final file to the browser through nginx directly.
In the code:
send_file('/var/www/shared/storage/00/00/01', :disposition => :inline, :filename => @file.name)
(Filename is replaced for purposes of this example, just please note that it is absolute path to the file which you want to send.)
So I had to add this to my nginx.conf:
server {
# ... some other configuration
passenger_set_cgi_param HTTP_X_ACCEL_MAPPING /var/www/shared/storage/=/storage/;
passenger_pass_header X-Accel-Redirect;
location /storage {
root /var/www/shared;
internal;
}
# ... some other configuration
}
The path /storage is not visible from outside world, it is just internal.
Rack::Sendfile gets header X-Accel-Mapping, gets the first part of it and replaces /var/www/shared/storage to /storage... then it spits out just the header containing:
X-Accel-Redirect: /storage/00/00/01
which is then processed by NGINx.
I can see this works correctly as the file is downloaded 100x faster than before and no error is shown in the logs.
Hope this helps.