Skip to content

Instantly share code, notes, and snippets.

@shin1x1
Last active December 18, 2015 00:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shin1x1/5698377 to your computer and use it in GitHub Desktop.
Save shin1x1/5698377 to your computer and use it in GitHub Desktop.
# -*- 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