Advertisement
Guest User

Untitled

a guest
Apr 20th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Vagrant.configure('2') do |config|
  2. config.push.define "staging", strategy: "ftp" do |push|
  3. push.host = "staging.dev"
  4. push.passive = false
  5. push.secure = true
  6. push.username = "user"
  7. push.password = "password"
  8. push.destination = "/var/www/staging/"
  9. push.dir = "./html/"
  10. end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement