refactor unicorn file
This commit is contained in:
parent
79563379cb
commit
e0711f265d
|
@ -1,12 +1,10 @@
|
||||||
app_path = "/home/ruby/wblog/current"
|
app_path = File.expand_path( File.join(File.dirname(__FILE__), '..', '..'))
|
||||||
|
|
||||||
worker_processes 1
|
worker_processes 1
|
||||||
preload_app true
|
preload_app true
|
||||||
timeout 180
|
timeout 180
|
||||||
listen '/tmp/unicorn_wblog.sock'
|
listen '/tmp/unicorn_wblog.sock'
|
||||||
user 'ruby', 'ruby'
|
user 'ruby', 'ruby'
|
||||||
working_directory app_path
|
|
||||||
pid "#{app_path}/tmp/pids/unicorn_wblog.pid"
|
|
||||||
stderr_path "log/unicorn.log"
|
stderr_path "log/unicorn.log"
|
||||||
stdout_path "log/unicorn.log"
|
stdout_path "log/unicorn.log"
|
||||||
|
|
||||||
|
@ -23,3 +21,7 @@ end
|
||||||
|
|
||||||
after_fork do |server, worker|
|
after_fork do |server, worker|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
before_exec do |server|
|
||||||
|
ENV["BUNDLE_GEMFILE"] = "#{app_path}/current/Gemfile"
|
||||||
|
end
|
Loading…
Reference in New Issue