-
-
Save danielfilho/5573618 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
#!/usr/bin/env bash | |
apt-get update | |
apt-get install -y apache2 | |
apt-get install -y git |
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.define :master do |master_config| | |
master_config.vm.box = "precise64" | |
master_config.vm.network :hostonly, "192.168.10.50" | |
master_config.vm.host_name = "localhost.dev" | |
master_config.vm.provision :shell, :path => "bootstrap.sh" | |
master_config.vm.share_folder "vagrant-root", "/var/www", "/Volumes/HD/dev/localhost.dev/www" | |
#master_config.vm.forward_port 3000, 93000 | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment