您的位置:首页技术文章
文章详情页

nginx - 利用 Carrierwave 上传的图片在 production 环境中不显示

【字号: 日期:2024-08-10 16:21:01浏览:34作者:猪猪

问题描述

我项目中Uploader的代码如下:

class PhotoUploader < CarrierWave::Uploader::Base include CarrierWave::MiniMagick process :resize_to_fit => [nil, 600] version :thumb do process :resize_to_fill => [150,150] end # Choose what kind of storage to use for this uploader: storage :file def store_dir 'uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}' end def cache_dir '#{Rails.root}/tmp/uploads' end def extension_white_list %w(jpg jpeg gif png) end def filename if original_filename @name ||= Digest::MD5.hexdigest(current_path) '#{@name}.#{file.extension}' end endend

在production.rb中,设置config.serve_static_assets = false。

利用Capistrano部署到Nginx + Passenger的生产环境中后,每次上传图片后会根据uploader的设置生成两份,就像这样:nginx - 利用 Carrierwave 上传的图片在 production 环境中不显示

其中,访问第一个图片可以正常显示,访问第二个(version :thumb)处理过的图片无法显示,报出:

ActionController::RoutingError (No route matches [GET] '/uploads/picture/photo/49/thumb_6d9596c7449d3714eadb74b9c71beec2.jpg')

这样的错误,而实际上这里面的thumb_6d9596c7449d3714eadb74b9c71beec2.jpg是存在于该路径下的。

所以,这是哪里出了错?该怎么办?

问题解答

回答1:

可以通过 photo.url(:thumb) 试试

相关文章: