0

Unicorn + Nginx を使用して Ubuntu 12.04 を実行している Vagrant VM で、ローカルの Rails 3.2 開発環境をセットアップしようとしています。次のようにソフトリンクを使用してnginxをインストールしました。

sudo apt-get install nginx
Create symlink for nginx conf file for dactarkhoj
cd /etc/nginx/sites-enabled
sudo ln -s /vagrant/config/nginx.conf dactarkhoj.conf
sudo service nginx start

ユニコーンもセットアップされており、使用して開始しました

unicorn_rails  -c /vagrant/config/unicorn.rb -D

なんらかの理由でブラウザを開くと、Rails アプリではなく「Welcome to nginx」メッセージしか表示されません。これを引き起こした可能性のある落とし穴は何ですか?

nginx.conf ファイルは

upstream unicorn {
  server unix:/tmp/unicorn.dactarkhoj.sock fail_timeout=0;
}

server {
  listen 80 default;
  root /vagrant/public;
  try_files $uri/index.html $uri @unicorn;
  location @unicorn {
    proxy_pass http://unicorn;
  }

  error_page 500 502 503 504 /500.html;
}

ユニコーンのconfファイルは

worker_processes 4

rails_root = File.expand_path('../..', __FILE__)
working_directory rails_root

listen '/tmp/unicorn.dactarkhoj.sock'

pid File.expand_path('tmp/pids/unicorn.pid', ENV['RAILS_ROOT'])

# combine REE with "preload_app true" for memory savings
# http://rubyenterpriseedition.com/faq.html#adapt_apps_for_cow
preload_app true

# Set the path of the log files inside the log folder of the testapp
stderr_path "/vagrant/log/unicorn.stderr.log"
stdout_path "/vagrant/log/unicorn.stdout.log"

before_fork do |server, worker|
  defined?(ActiveRecord::Base) and ActiveRecord::Base.connection.disconnect!

  old_pid = "#{ server.config[:pid] }.oldbin"
  unless old_pid == server.pid
    begin
      Process.kill :QUIT, File.read(old_pid).to_i
    rescue Errno::ENOENT, Errno::ESRCH
    end
  end
end

after_fork do |server, worker|
  defined?(ActiveRecord::Base) and ActiveRecord::Base.establish_connection
end
4

1 に答える 1