You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
rails_env = ENV['RAILS_ENV'] || 'production'
|
|
|
|
|
|
|
|
dir = 'rails'
|
|
|
|
|
|
|
|
# The rule of thumb is to use 1 worker per processor core available,
|
|
|
|
# however since we'll be hosting many apps on this server,
|
|
|
|
# we need to take a less aggressive approach
|
|
|
|
worker_processes 2
|
|
|
|
|
|
|
|
# We deploy with capistrano, so "current" links to root dir of current release
|
|
|
|
directory = '/home/rails'
|
|
|
|
port = 8080
|
|
|
|
|
|
|
|
if ENV['RAILS_ENV'] == 'preview'
|
|
|
|
directory = '/home/preview'
|
|
|
|
port = 8081
|
|
|
|
end
|
|
|
|
|
|
|
|
working_directory directory
|
|
|
|
|
|
|
|
# Listen on unix socket
|
|
|
|
listen "127.0.0.1:#{port}", :backlog => 64
|
|
|
|
|
|
|
|
pid "/home/unicorn/#{ENV['RAILS_ENV']}.pid"
|
|
|
|
|
|
|
|
stderr_path "#{directory}/log/unicorn.log"
|
|
|
|
stdout_path "#{directory}/log/unicorn.log"
|