Skip to content

Instantly share code, notes, and snippets.

@dcousineau
Created April 18, 2014 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dcousineau/11046038 to your computer and use it in GitHub Desktop.
Save dcousineau/11046038 to your computer and use it in GitHub Desktop.
Vagrant setup for foundations thumb drive
Download Box Here: https://s3.amazonaws.com/dcousineau/vagrant/foundations.v0.box
Also On Vagrantcloud: https://vagrantcloud.com/dcousineau/lsp-foundations/version/1
Vagrant.configure("2") do |config|
config.vm.box = "phpbridge"
config.vm.box_url = "../foundations.v0.box"
config.vm.network :forwarded_port, guest: 8080, host: 8080
config.vm.synced_folder "./", "/var/www"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment