Created
June 9, 2010 06:44
-
-
Save baldowl/431137 to your computer and use it in GitHub Desktop.
Keep-alive vs. Mongrel; saved by Thin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set :thin_conf, "#{current_path}/config/thin_cluster.yml" | |
namespace :deploy do | |
%w(star stop restar).each do |action| | |
task action.to_sym, :roles => :app do | |
run "thin -c #{deploy_to}/current -C #{thin_conf} #{action}" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment