配置:
LINUX UBUNTU 10.04 (Linode VPS)
NGINX
PASSENGER
RUBY 1.9.3
RAILS 3.2.1
其中,nginx 的配置基本保持默认状态。
相关代码:
Gemfile:
gem 'mongoid'
gem 'paperclip_mongoid'
Model:
class Support
include Mongoid::Document
include Mongoid::Paperclip
validates_attachment_size :download, :less_than => 300.megabytes
validates_attachment_presence :download
end
这样的配置,在本地时上传文件没有问题。但是在服务器上之后,20M 的文件都没能成功上传过一个。