I have created a rails app named rex using rails3, ruby-1.9.2 and using dragonfly-0.9.10 to handle image files.

class Entry < ActiveRecord::Base
  image_accessor :box_1
end

initializers/dragonfly.rb

require 'dragonfly'
app = Dragonfly[:images]

app.configure_with(:imagemagick)
app.configure_with(:rails)
app.configure do |c|
   c.datastore = Dragonfly::DataStorage::S3DataStore.new(
     :bucket_name => 'rex',
     :access_key_id => 'xxxxxx',
     :secret_access_key => 'xxxxxxx'
 )
end

app.define_macro(ActiveRecord::Base, :image_accessor)

In my local computer, dragonfly work fine. After uploading a image file, then I can access it by the url http://localhost/media/BAhbB1sHOgZmSSImMjAxMi8wMi8wOS8yMC8yMi8wNi83MzgvaW1hZ2UucG5nBjoGRVRbCDoGcDoKdGh1bWJJIgkyODV4BjsGVA (The long string following media is depend on the image file) Then i deploy my app to a centos server. During the procedure of uploading an image file, there is no any exception happened, and I find the image file have been saved successfully to S3, but when i try to access the url http://rex.lightningrm.com/media/BAhbB1sHOgZmSSImMjAxMi8wMi8xMC8wMC8yOS80Ny8xMzUvaW1hZ2UucG5nBjoGRVRbCDoGcDoKdGh1bWJJIgkyODV4BjsGVA of the image file uploaded, I got a 502 error, I could not find dragonfly log in the production.log.

I have almost the same nginx.conf and unicorn.rb file in my local computer and centos server.

Following is the nginx.conf in centos server,

http {
    include       /etc/nginx/mime.types;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                     '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    tcp_nopush      on;

    keepalive_timeout  0;

    gzip  on;
    gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    upstream rex_tink{
    server unix:/var/www/system/unicorn.rex_tink.sock fail_timeout=0;
  }

server {
    listen       80;
    server_name  rex.lightningrm.com;

    root /var/www/current/rex_tink/public;

    location ~* ^(/assets|/favicon.ico) {
      access_log        off;
      expires           max;
    }


    location ~   ^/(assets|images|applicious|css|drawing_fb|drawing_site|rex_animation|terms|js|tolk|fonts)/  {
      root /var/www/current/rex_tink/public;
      expires max;
      break;
    }

    location / {
      proxy_redirect     off;
      proxy_set_header   Host $host;
      proxy_set_header   X-Forwarded-Host $host;
      proxy_set_header   X-Forwarded-Server $host;
      proxy_set_header   X-Real-IP        $remote_addr;
      proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
      proxy_buffering    on;
      proxy_pass         http://rex_tink;
    }

    location ~ \.swf$ {
       root /var/www/current/rex_tink/public;
    }
}

following is the unicorn.rb in centos server,

rails_env = ENV['RAILS_ENV'] || 'production'

preload_app true

working_directory '/var/www/current/rex_tink'

pid "/var/www/shared/pids/unicorn.pid"
stderr_path "/var/www/shared/log/unicorn.log"
stdout_path "/var/www/shared/log/unicorn.log"

worker_processes (rails_env == 'production' ? 8 : 4)
timeout 120

listen "/var/www/system/unicorn.rex_tink.sock"
listen 4002, :tcp_nopush => false

before_fork do |server, worker|
  old_pid = "/var/www/shared/pids/unicorn.pid.oldbin"
  if File.exists?(old_pid) && server.pid != old_pid
  begin
    Process.kill("QUIT", File.read(old_pid).to_i)
    rescue Errno::ENOENT, Errno::ESRCH
    puts "Send 'QUIT' signal to unicorn error!"
  end
end
end

Sometimes i find some error log like "couldn't decode BAhbB1sHOgZ - got marshal data too short" in the production.log.

I want to ask how to fix this issue in my centos server, or at least how could i get the dragonfly log?

ps: i could access '/dragonfly' which is a built-in url for dragonfly.

Thanks

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.