I have a rails stack using carrierwave + fog to upload images to S3. In the staging environment everything works OK, but on production it doesn't upload anything :'(
I'm passing the following configuration:
carrierwave_config.rb
if Rails.env.production? || Rails.env.staging?
CarrierWave.configure do |config|
config.storage = :fog
config.fog_credentials = {
:provider => 'AWS', # required
:aws_access_key_id => Settings.s3_credentials.aws_access_key_id, # required
:aws_secret_access_key => Settings.s3_credentials.aws_secret_access_key, # required
:region => 'us-west-2' # optional, defaults to 'us-east-1'
}
config.fog_directory = Settings.s3_credentials.bucket_name # required
config.fog_public = true # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
end
class CarrierWave::Storage::Fog::File
def exists?
!!directory.files.head(path)
end
end
The environment is production
$ rails c
Loading production environment (Rails 3.2.2)
irb(main):001:0> Rails.env.production?
=> true
irb(main):002:0> Settings.s3_credentials.bucket_name
=> "xxxxxxx-production"
Here I handle the upload
image_uploader.rb
class ImageUploader < CarrierWave::Uploader::Base
# Include RMagick or MiniMagick support:
# include CarrierWave::RMagick
include CarrierWave::MiniMagick
# Include the Sprockets helpers for Rails 3.1+ asset pipeline compatibility:
# include Sprockets::Helpers::RailsHelper
# include Sprockets::Helpers::IsolatedHelper
if Rails.env.development? || Rails.env.test?
# Store in public:
storage :file
elsif Rails.env.production? || Rails.env.staging?
# Store in Aws S3
storage :fog
end
# Override the directory where uploaded files will be stored.
# This is a sensible default for uploaders that are meant to be mounted:
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
# Provide a default URL as a default if there hasn't been a file uploaded:
def default_url
# # For Rails 3.1+ asset pipeline compatibility:
# # asset_path("fallback/" + [version_name, "default.png"].compact.join('_'))
#
"/images/fallback/" + [version_name, "default.png"].compact.join('_')
end
# Process files as they are uploaded:
# process :scale => [200, 300]
#
# def scale(width, height)
# # do something
# end
def move_to_cache
false
end
def move_to_store
false
end
# Create different versions of your uploaded files:
version :thumb do
process :resize_to_fit => [50, 50]
end
version :portrait do
process :resize_to_fill => [180, 180, 'North']
end
version :large do
process :resize_to_fit => [300, 300]
end
version :pin do
process :resize_to_fit => [300, 20000]
end
version :stream do
process :convert => 'png'
process :resize_to_fit => [600, 2000]
process :interlace_image
end
# Add a white list of extensions which are allowed to be uploaded.
# For images you might use something like this:
def extension_white_list
%w(jpg jpeg gif png)
end
def interlace_image
manipulate! do |img|
img.strip
img.format("png")
img.combine_options do |cmd|
cmd.interlace "plane"
cmd.quality "100"
cmd.depth "8"
end
img = yield(img) if block_given?
img
end
end
# Override the filename of the uploaded files:
# Avoid using model.id or version_name here, see uploader/store.rb for details.
# def filename
# "something.jpg" if original_filename
# end
end
Does anybody know if I'm missing something? It is really weird.
Thanks a lot!!
Lulo
UPDATE: The mistake was somewhere else in the nginx config files :-S