Guest User

Untitled

a guest
Jun 20th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. set :use_sudo, false
  2. #tell git to clone only the latest revision and not the whole repository
  3. set :git_shallow_clone, 1
  4. set :keep_releases, 5
  5. set :application, "shop"
  6. set :user, "deployer"
  7. set :password, "asdfg"
  8. set :deploy_to, "/home/deployer/shop"
  9. set :runner, "deployer"
  10. set :repository, "git@github.com:mauricio/linuxfi-loja.git"
  11. set :scm, :git
  12. #options necessary to make Ubuntu’s SSH happy
  13. ssh_options[:paranoid] = false
  14. default_run_options[:pty] = true
  15.  
  16. role :app, "184.106.215.175"
  17. role :web, "184.106.215.175"
  18. role :db, "184.106.215.175", :primary => true
Add Comment
Please, Sign In to add comment