Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. VAGRANTFILE_API_VERSION = "2"
  4.  
  5. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  6. config.vm.box = "base"
  7. config.vm.network "forwarded_port", guest: 80, host: 8000
  8. config.vm.network "forwarded_port", guest: 8081, host: 8082
  9. config.vm.network "private_network", ip: "10.9.8.7"
  10. config.vm.synced_folder ".", "/vagrant", type: "nfs"
  11. config.vm.provider "virtualbox" do |v|
  12. v.memory = 2048
  13. end
  14. # config.vm.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] # This may be necessary if you find your guest machine can't do DNS lookups
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement