Skip to content

Instantly share code, notes, and snippets.

@nikukyugamer
Created May 22, 2018 08:07
Show Gist options
  • Select an option

  • Save nikukyugamer/45fd224fcdcbf3ed396c2f900704e102 to your computer and use it in GitHub Desktop.

Select an option

Save nikukyugamer/45fd224fcdcbf3ed396c2f900704e102 to your computer and use it in GitHub Desktop.
config/deploy/production.rb
set :stage, :production
set :branch, :master
set :deploy_to, '/opt/FOOBAR'
set :rails_env, 'production'
server 'SEVER_ADDRESS(NAME)', user: 'USERNAME', roles: %w{web app db}
set :ssh_options, {
keys: [File.expand_path('USER_KEY')]
}
set :unicorn_pid, "#{shared_path}/tmp/pids/unicorn.production.pid"
set :unicorn_config_path, "#{release_path}/config/unicorn.production.rb"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment