Created
December 2, 2014 15:50
-
-
Save zacharyblank/a59442d51780d185d90b to your computer and use it in GitHub Desktop.
Basic Vagrant
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
Vagrant.configure("2") do |config| | |
config.vm.box = "trusty64" | |
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box" | |
config.vm.network :private_network, ip: "198.18.0.114" | |
config.vm.synced_folder "./web", "/vagrant/web", owner: "www-data", group: "www-data", mount_options: ["dmode=775,fmode=664"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment