Last active
December 18, 2015 00:39
-
-
Save shin1x1/5698377 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
config.vm.box = "centos64_64" | |
config.vm.define :web do |web| | |
web.vm.host_name = "vg.local" | |
web.vm.network :hostonly, "192.168.33.12" | |
web.vm.customize ["modifyvm", :id, "--memory", 1024] | |
web.vm.share_folder "web", "/web", "../", :create => true, :owner=> 'vagrant', :group=>'apache', :extra => 'dmode=775,fmode=775' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment