Last active
August 29, 2015 14:14
-
-
Save sameg14/9e31709d132e6494ec1d to your computer and use it in GitHub Desktop.
Mac - ACA generic LAMP VM VagrantFile
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
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.hostname = "aca.vm" | |
config.vm.box = "https://s3-us-west-2.amazonaws.com/vagrantvmboxes/aca-generic-lamp-packaged.box" | |
config.vm.network "private_network", ip: "10.10.10.60" | |
config.vm.synced_folder "~/Desktop/htdocs", "/var/www" | |
config.vm.provider "virtualbox" do |vb| | |
vb.gui = false | |
vb.customize ["modifyvm", :id, "--memory", "1024"] | |
vb.customize ["modifyvm", :id, "--cpus", "1"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment