Created
April 23, 2012 12:37
-
-
Save joelmoss/2470666 to your computer and use it in GitHub Desktop.
Capistrano recipe for Puma start/stop/restarts
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 :shared_children, shared_children << 'tmp/sockets' | |
namespace :deploy do | |
desc "Start the application" | |
task :start, :roles => :app, :except => { :no_release => true } do | |
run "cd #{current_path} && RAILS_ENV=#{stage} bundle exec puma -b 'unix://#{shared_path}/sockets/puma.sock' -S #{shared_path}/sockets/puma.state --control 'unix://#{shared_path}/sockets/pumactl.sock' >> #{shared_path}/log/puma-#{stage}.log 2>&1 &", :pty => false | |
end | |
desc "Stop the application" | |
task :stop, :roles => :app, :except => { :no_release => true } do | |
run "cd #{current_path} && RAILS_ENV=#{stage} bundle exec pumactl -S #{shared_path}/sockets/puma.state stop" | |
end | |
desc "Restart the application" | |
task :restart, :roles => :app, :except => { :no_release => true } do | |
run "cd #{current_path} && RAILS_ENV=#{stage} bundle exec pumactl -S #{shared_path}/sockets/puma.state restart" | |
end | |
desc "Status of the application" | |
task :status, :roles => :app, :except => { :no_release => true } do | |
run "cd #{current_path} && RAILS_ENV=#{stage} bundle exec pumactl -S #{shared_path}/sockets/puma.state stats" | |
end | |
end |
FYI puma/puma#157
My fork with vars and more clean https://gist.github.com/shtirlic/5052306
thx @joelmoss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The start script should add
-e production
,see this: puma/puma#149 (comment)